Skip to content

Commit

Permalink
. e junit test report to other builds
Browse files Browse the repository at this point in the history
Co-Authored-By: Llewellyn Falco <[email protected]>
Co-Authored-By: asegrt <[email protected]>
  • Loading branch information
3 people committed Nov 4, 2024
1 parent f29932a commit 53d4788
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test-ea.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,8 @@ jobs:
run: |
./set_formatting_off.sh
./build_and_test.sh
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/target/surefire-reports/*.xml'
5 changes: 5 additions & 0 deletions .github/workflows/test-jdk-8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,9 @@ jobs:
run: |
java -version
mvn verify
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/target/surefire-reports/*.xml'

0 comments on commit 53d4788

Please sign in to comment.