We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3a0018 commit 449f6d1Copy full SHA for 449f6d1
.github/workflows/unit-tests.yaml
@@ -127,5 +127,14 @@ jobs:
127
with:
128
paths: |
129
**/target/surefire-reports/TEST-*.xml
130
+ # Upload Surefire test results as an artifact
131
+ - name: Upload Surefire Test Results
132
+ uses: actions/upload-artifact@v4
133
+ if: always() # ensures upload happens even if tests fail
134
+ with:
135
+ name: surefire-results--${{ matrix.isa }}-${{ matrix.jdk }}
136
+ path: "**/target/surefire-reports/**"
137
+
138
139
140
0 commit comments