Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ jobs:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macOS-latest]
framework: [net9.0, net8.0]
include:
- os: windows-latest
framework: net462

runs-on: ${{ matrix.os }}
steps:
Expand All @@ -30,8 +26,15 @@ jobs:
- name: Build
run: dotnet build

- name: Test
run: dotnet test -f ${{ matrix.framework }} --no-build --no-restore
- name: .NET Framework Tests
if: matrix.os == 'windows-latest'
run: dotnet test -f net462 --no-build --no-restore

- name: .NET 8 Tests
run: dotnet test -f net8.0 --no-build --no-restore

- name: .NET 9 Tests
run: dotnet test -f net9.0 --no-build --no-restore

format-verify:
runs-on: ubuntu-latest
Expand Down
Loading