-
Notifications
You must be signed in to change notification settings - Fork 20
50 lines (40 loc) · 1.04 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
43
44
45
46
47
48
49
50
name: Test Report
on:
workflow_run:
workflows: ['Build and Test']
types:
- completed
jobs:
unit-test-report:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Publish Unit Test Report
uses: dorny/test-reporter@v1
with:
artifact: unit-test-results
name: Unit Tests
path: '*.trx'
reporter: dotnet-trx
integration-test-report:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Publish Integration Test Report
uses: dorny/test-reporter@v1
with:
artifact: integration-test-results
name: Integration Tests
path: '*.trx'
reporter: dotnet-trx
e2e-test-report:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Publish e2e Test Report
uses: dorny/test-reporter@v1
with:
artifact: e2e-test-results
name: e2e Tests
path: '*.trx'
reporter: dotnet-trx