Skip to content

Commit b8772e3

Browse files
committed
Add interactive and granular reports (AC2)
1 parent f75db4f commit b8772e3

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,17 @@ jobs:
3939
uses: javiertuya/junit-report-action@v1.3.0
4040
with:
4141
surefire-files: "**/target/surefire-reports/TEST-*.xml"
42-
report-dir: target/site/junit
42+
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/
4347

4448
- if: always()
4549
name: Publish test report files
4650
uses: actions/upload-artifact@v4.6.2
4751
with:
4852
name: "test-report-java${{ matrix.version }}"
4953
path: |
50-
target/site/junit
54+
target/reports
55+
!target/reports/someFileName.html

0 commit comments

Comments
 (0)