Skip to content

Commit 0d09495

Browse files
authored
ci: dont run netcoreapp3.1 and net5.0 on macos
1 parent a76e028 commit 0d09495

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,17 @@ jobs:
137137
9.0.x
138138
139139
- name: 🧪 Run unit tests
140-
run: dotnet test -c release --blame --blame-crash --blame-hang -p:VSTestUseMSBuildOutput=false
140+
if: matrix.os != 'macos-latest'
141+
run: |
142+
dotnet test -c release --blame --blame-crash --blame-hang -p:VSTestUseMSBuildOutput=false -f netcoreapp3.1
143+
dotnet test -c release --blame --blame-crash --blame-hang -p:VSTestUseMSBuildOutput=false -f net5.0
144+
145+
- name: 🧪 Run unit tests
146+
run: |
147+
dotnet test -c release --blame --blame-crash --blame-hang -p:VSTestUseMSBuildOutput=false -f net6.0
148+
dotnet test -c release --blame --blame-crash --blame-hang -p:VSTestUseMSBuildOutput=false -f net7.0
149+
dotnet test -c release --blame --blame-crash --blame-hang -p:VSTestUseMSBuildOutput=false -f net8.0
150+
dotnet test -c release --blame --blame-crash --blame-hang -p:VSTestUseMSBuildOutput=false -f net9.0
141151
142152
- name: 📛 Upload hang- and crash-dumps on test failure
143153
if: failure()

0 commit comments

Comments
 (0)