You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
397 B
YAML
21 lines
397 B
YAML
name: 'Test Report'
|
|
on:
|
|
workflow_run:
|
|
workflows: ['test']
|
|
types:
|
|
- completed
|
|
permissions:
|
|
contents: read
|
|
actions: read
|
|
checks: write
|
|
jobs:
|
|
report:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dorny/test-reporter@v1
|
|
with:
|
|
artifact: /test-results-(.*)/
|
|
name: 'Tests Results - $1'
|
|
path: '*junit.xml'
|
|
reporter: java-junit
|