Skip to content

Upgrade to .NET 9

Upgrade to .NET 9 #50

Workflow file for this run

name: test
on:
pull_request:
branches:
- master
paths:
- "**/*.cs"
- "**/*.csproj"
- "**/*.props"
- ".github/workflows/test.yml"
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest"]
dotnet: ["9.0.x"]
steps:
- uses: actions/checkout@v4
- name: Setup .NET ${{ matrix.dotnet }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build
- name: Test
run: dotnet test