mirror of https://github.com/BOINC/boinc.git
Merge pull request #4484 from talregev/TalR_unit_test_reporter
[CI] Add test report ci
This commit is contained in:
commit
fdf0507dee
|
@ -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
|
Loading…
Reference in New Issue