We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2a07ace + f59441c commit 9dafe1dCopy full SHA for 9dafe1d
2 files changed
.github/workflows/pull-requests.yml
@@ -43,7 +43,15 @@ jobs:
43
uses: actions/setup-dotnet@v5
44
- name: Run CI
45
run: dotnet fsi build.fsx
46
-
+
47
+ - name: Upload test results
48
+ uses: actions/upload-artifact@v4
49
+ if: failure()
50
+ with:
51
+ name: test-results-${{ matrix.os }}
52
+ path: TestResults/
53
+ retention-days: 7
54
55
- name: Analyze Solution
56
if: matrix.os == 'ubuntu-latest'
57
run: dotnet msbuild /t:AnalyzeSolution
.github/workflows/push-main.yml
@@ -41,6 +41,15 @@ jobs:
41
42
+ name: test-results-ubuntu
- name: Deploy docs
uses: peaceiris/actions-gh-pages@v4
with:
0 commit comments