Skip to content

Bump NUnit from 4.4.0 to 4.5.0 (#33) #38

Bump NUnit from 4.4.0 to 4.5.0 (#33)

Bump NUnit from 4.4.0 to 4.5.0 (#33) #38

name: Build and run tests
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
dotnet-quality: 'ga'
- name: Build with dotnet
run: dotnet build -c Release
- name: Test with dotnet
run: dotnet test -c Release