-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (42 loc) · 1.05 KB
/
test-report.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: 'Test Report'
on:
workflow_run:
workflows: ['CI']
types:
- completed
jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: dorny/test-reporter@v1
if: success() || failure()
with:
artifact: Test results (MacOS)
name: MacOS Tests
path: '*.trx'
reporter: dotnet-trx
fail-on-error: 'false'
- uses: dorny/test-reporter@v1
if: success() || failure()
with:
artifact: Test results (Ubuntu)
name: Ubuntu Tests
path: '*.trx'
reporter: dotnet-trx
fail-on-error: 'false'
- uses: dorny/test-reporter@v1
if: success() || failure()
with:
artifact: Test results (Windows)
name: Windows Tests
path: '*.trx'
reporter: dotnet-trx
fail-on-error: 'false'
- uses: dorny/test-reporter@v1
if: success() || failure()
with:
artifact: Test results (.NET Framework)
name: .NET Framework Tests
path: '*.trx'
reporter: dotnet-trx
fail-on-error: 'false'