We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72074df commit 5eaa33fCopy full SHA for 5eaa33f
.github/workflows/test.yml
@@ -10,10 +10,6 @@ jobs:
10
strategy:
11
matrix:
12
os: [windows-latest, ubuntu-latest, macOS-latest]
13
- framework: [net9.0, net8.0]
14
- include:
15
- - os: windows-latest
16
- framework: net462
17
18
runs-on: ${{ matrix.os }}
19
steps:
@@ -30,8 +26,15 @@ jobs:
30
26
- name: Build
31
27
run: dotnet build
32
28
33
- - name: Test
34
- run: dotnet test -f ${{ matrix.framework }} --no-build --no-restore
29
+ - 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
35
36
+ - name: .NET 9 Tests
37
+ run: dotnet test -f net9.0 --no-build --no-restore
38
39
format-verify:
40
runs-on: ubuntu-latest
0 commit comments