1
Fork 0
mirror of https://github.com/RGBCube/cstree synced 2025-07-29 01:57:44 +00:00
cstree/.github/workflows/test-report.yml
2023-04-18 22:36:02 +02:00

16 lines
No EOL
576 B
YAML

name: 'Test Report'
on:
workflow_run:
workflows: ['CI'] # runs after CI workflow
types:
- completed
jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: dorny/test-reporter@v1
with:
artifact: /test-results-([a-z]*)-(.*)/ # artifact name: test-results-<toolchain>-<os>
name: Results | $1 $2 # Name of the check run which will be created
path: './**/junit-*.xml' # Path to test results (inside artifact .zip)
reporter: java-junit # Format of test results