Skip to content

build: Bump GitHub Actions #37

build: Bump GitHub Actions

build: Bump GitHub Actions #37

Workflow file for this run

name: 🛠 Build, 🧪 Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: 🛠 Build, 🧪 Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: src/
steps:
- name: 🛒 Checkout
uses: actions/checkout@v3
- name: 🟣 Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: 🌴 Install dependencies
run: dotnet restore
- name: 🛠 Build
run: dotnet build --configuration Release --no-restore
- name: 🧪 Test
run: dotnet test --no-restore --verbosity normal