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 f75db4f commit b8772e3Copy full SHA for b8772e3
.github/workflows/main.yml
@@ -39,12 +39,17 @@ jobs:
39
uses: javiertuya/junit-report-action@v1.3.0
40
with:
41
surefire-files: "**/target/surefire-reports/TEST-*.xml"
42
- report-dir: target/site/junit
+ report-dir: target/reports
43
+
44
+ - if: always()
45
+ name: Interactive and granular reports
46
+ run: cp core/target/*.html target/reports/ && cp core/target/*.csv target/reports/
47
48
- if: always()
49
name: Publish test report files
50
uses: actions/upload-artifact@v4.6.2
51
52
name: "test-report-java${{ matrix.version }}"
53
path: |
- target/site/junit
54
+ target/reports
55
+ !target/reports/someFileName.html
0 commit comments