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.
2 parents 18c093f + 7834b0c commit bfc5d8aCopy full SHA for bfc5d8a
.github/workflows/gradle.yml
@@ -53,6 +53,12 @@ jobs:
53
with:
54
name: Test Results (Java ${{ matrix.java_version }}.${{ matrix.os }})
55
path: "**/test-results/test/**/*.xml"
56
+ - name: Publish Test report
57
+ if: failure()
58
+ uses: actions/upload-artifact@v5
59
+ with:
60
+ name: junit_report_${{ matrix.os }}_${{ matrix.java_version }}
61
+ path: build/reports/tests/test
62
publish-test-results:
63
needs: [gatekeeper, check-pr-exists, build]
64
runs-on: ubuntu-latest
@@ -71,3 +77,4 @@ jobs:
71
77
uses: EnricoMi/publish-unit-test-result-action@v2
72
78
73
79
junit_files: "artifacts/**/*.xml"
80
+
0 commit comments