Merge pull request #4484 from talregev/TalR_unit_test_reporter

[CI] Add test report ci
This commit is contained in:
Vitalii Koshura 2021-08-02 16:47:46 +02:00 committed by GitHub
commit fdf0507dee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

17
.github/workflows/test-report.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: 'Test Report'
on:
workflow_run:
workflows: [Linux, Android] # runs after These workflow
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