Skip to content

Commit c75f0d8

Browse files
Split testing per runtime for stability
1 parent 4a7f072 commit c75f0d8

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/dotnet.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111

1212
env:
1313
USE_FULL_NUMERIC_PROVIDER: "true"
14+
MSBUILDDISABLENODEREUSE: "1"
1415

1516
jobs:
1617
build:
@@ -27,5 +28,9 @@ jobs:
2728
run: dotnet restore
2829
- name: Build
2930
run: dotnet build --no-restore
30-
- name: Test
31-
run: dotnet test --no-build --verbosity quiet
31+
- name: Test (.NET 8.0)
32+
run: dotnet test --no-build --framework net8.0 --verbosity quiet
33+
- name: Test (.NET 9.0)
34+
run: dotnet test --no-build --framework net9.0 --verbosity quiet
35+
- name: Test (.NET 10.0)
36+
run: dotnet test --no-build --framework net10.0 --verbosity quiet

0 commit comments

Comments
 (0)