2021-08-02 01:22:47 +00:00
|
|
|
name: 'Test Report'
|
|
|
|
on:
|
|
|
|
workflow_run:
|
2021-08-02 20:11:35 +00:00
|
|
|
workflows: [Linux, Android, Windows] # runs after these workflow
|
2021-08-02 01:22:47 +00:00
|
|
|
types:
|
|
|
|
- completed
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
report:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: dorny/test-reporter@v1
|
|
|
|
with:
|
|
|
|
artifact: /(.*)_tests_results/ # artifact name
|
|
|
|
name: $1 Tests Report # Name of the check run which will be created
|
|
|
|
path: '*.xml' # Path to test results (inside artifact .zip)
|
|
|
|
reporter: java-junit
|
2021-08-05 07:44:01 +00:00
|
|
|
fail-on-error: false
|