This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
Test Report #2309
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
## Workflow to process the JUnit test results and add a report to the checks. | |
name: Test Report | |
on: | |
workflow_run: | |
workflows: | |
- pull-request | |
types: | |
- completed | |
permissions: | |
contents: read | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
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 | |
path: "**/*.xml" # Path to test results (inside artifact .zip) | |
reporter: java-junit # Format of test results |