Skip to content

Commit

Permalink
report paths for junit report
Browse files Browse the repository at this point in the history
  • Loading branch information
maddingo committed Jan 12, 2025
1 parent 791db0a commit 389a89f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
pull-requests: write

runs-on: ubuntu-24.04
continue-on-error: true
strategy:
fail-fast: false
matrix:
java: [ '8', '11', '17', '21']

Expand All @@ -42,9 +44,10 @@ jobs:
- name: Build with Maven
run: mvn -B verify
- name: Write out Unit Test report annotation for forked repo
if: failure()
if: success() || failure()
uses: mikepenz/action-junit-report@v5
with:
report_paths: '**/*-reports/TEST-*.xml'
comment: true
detailed_summary: true
group_suite: true

0 comments on commit 389a89f

Please sign in to comment.