Skip to content

Commit

Permalink
chore: migrate, adding download step (v4)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoniePhiline committed Apr 1, 2024
1 parent 46dabb0 commit 838d1e1
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/junit-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: dorny/test-reporter@v1
with:
artifact: junit.xml
name: 'JUnit report'
fail-on-error: 'false'
path: junit.xml
reporter: java-junit
- uses: actions/checkout@v3
- uses: actions/download-artifact@v4
with:
github-token: ${{secrets.GITHUB_TOKEN}}
name: junit.xml
run-id: ${{ github.event.workflow_run.id }}
path: target/nextest/default/
- uses: dorny/test-reporter@v1
with:
fail-on-error: 'false'
name: 'JUnit report'
path: target/nextest/default/junit.xml
reporter: java-junit

0 comments on commit 838d1e1

Please sign in to comment.