Skip to content

Update to latest version of GH actions #34

Update to latest version of GH actions

Update to latest version of GH actions #34

name: dotnet build and test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: 8.0.101
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -warnaserror --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal