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 0b481d6 commit 30beb83Copy full SHA for 30beb83
.github/workflows/macosci.yml
@@ -24,4 +24,10 @@ jobs:
24
- name: Build
25
run: dotnet build --configuration Release
26
- name: Test
27
- run: dotnet test --configuration Release
+ run: dotnet test --configuration Release --blame-crash --blame-hang --blame-hang-timeout 300s --logger:"console;verbosity=detailed"
28
+ - name: Upload Test Results
29
+ uses: actions/upload-artifact@v4
30
+ if: always() # This ensures it runs even after test failure
31
+ with:
32
+ name: test-results
33
+ path: Tst/UnitTests/TestResults/**/*.xml
0 commit comments