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 026948a commit 5a44ed4Copy full SHA for 5a44ed4
.github/workflows/test.yml
@@ -33,6 +33,13 @@ jobs:
33
python -m unittest discover -s tests
34
continue-on-error: false # Stop on failure
35
36
- - name: Store Test Results
37
- if: always()
38
- run: echo "TESTS_PASSED=${{ job.status }}" >> $GITHUB_ENV
+ - name: Store Test Result in Environment
+ run: |
+ echo "TESTS_PASSED=${{ job.status }}" >> test_result.txt
39
+
40
+ - name: Upload Test Result Artifact
41
+ uses: actions/upload-artifact@v4
42
+ with:
43
+ name: TESTS_PASSED
44
+ path: test_result.txt
45
+ retention-days: 1 # Keep the artifact for 1 day
0 commit comments