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 cc6f64f commit eece008Copy full SHA for eece008
.github/workflows/dotnet-tests.yml
@@ -30,9 +30,13 @@ jobs:
30
run: |
31
make test-unit
32
33
+ - name: View Test Results in Logs
34
+ run: cat /home/runner/work/dtos-cohort-manager/dtos-cohort-manager/tests/UnitTests/SharedTests/BlobStorageHelperTests/TestResults/*.trx
35
+
36
37
- name: Upload Test Results
38
uses: actions/upload-artifact@v4
39
with:
40
name: test-results
- path: tests/UnitTests/SharedTests/BlobStorageHelperTests/TestResults/*.trx # ✅ Correct path
41
+ path: /home/runner/work/dtos-cohort-manager/dtos-cohort-manager/tests/UnitTests/SharedTests/BlobStorageHelperTests/TestResults/*.trx # ✅ Correct path
42
retention-days: 7
0 commit comments