Skip to content

Merge pull request #532 from NeilMacMullen/dependabot/nuget/Microsoft… #222

Merge pull request #532 from NeilMacMullen/dependabot/nuget/Microsoft…

Merge pull request #532 from NeilMacMullen/dependabot/nuget/Microsoft… #222

Workflow file for this run

name: Build main
on:
push:
branches:
- main
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --configuration Release