Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test-reporter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: elastic/apm-pipeline-library/.github/actions/test-report@current
with:
artifact: test-results # artifact name
name: JUnit Tests # Name of the check run which will be created
artifact: /test-results-(.*)/
name: 'JUnit Tests $1'
path: "*-junit-report.xml" # Path to test results (inside artifact .zip)
reporter: java-junit # Format of test results
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: test-results
name: test-results-${{ matrix.platform }}
path: '*-junit-report.xml'
build:
runs-on: ubuntu-latest
Expand Down