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 9bedf2b commit 585418cCopy full SHA for 585418c
.github/workflows/ci.yaml
@@ -40,12 +40,16 @@ jobs:
40
run: dotnet restore --locked-mode
41
- name: dotnet test
42
run: dotnet test --no-restore --blame-hang --blame-hang-dump-type full --blame-hang-timeout 2m -p:Platform=x64
43
- - name: Upload TestResults
44
- if: always()
+ - name: Upload test binaries and TestResults
+ if: failure()
45
uses: actions/upload-artifact@v4
46
with:
47
name: test-results
48
- path: ./**/TestResults
+ retention-days: 1
49
+ path: |
50
+ ./**/bin
51
+ ./**/obj
52
+ ./**/TestResults
53
54
build:
55
runs-on: windows-latest
0 commit comments