We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bee2d2 commit 0580a6bCopy full SHA for 0580a6b
.github/workflows/unit-tests.yaml
@@ -83,6 +83,13 @@ jobs:
83
paths: |
84
**/target/surefire-reports/TEST-*.xml
85
86
+ # Upload Surefire test results as an artifact
87
+ - name: Upload Surefire Test Results
88
+ uses: actions/upload-artifact@v4
89
+ if: always() # ensures upload happens even if tests fail
90
+ with:
91
+ name: surefire-results
92
+ path: "**/target/surefire-reports/**"
93
94
build:
95
concurrency:
0 commit comments