mirror of
https://github.com/RGBCube/cstree
synced 2025-07-29 01:57:44 +00:00
16 lines
No EOL
576 B
YAML
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 |