-
Notifications
You must be signed in to change notification settings - Fork 45
83 lines (82 loc) · 3.06 KB
/
generate-test-reports.yml
File metadata and controls
83 lines (82 loc) · 3.06 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# This was generated by tool. Edits will be overwritten.
name: generate-test-reports
on:
workflow_run:
workflows:
- 'ignore-this/ci'
- 'access-token-management/ci'
- 'identity-model/ci'
- 'identity-model-oidc-client/ci'
- 'introspection/ci'
types:
- completed
jobs:
report:
name: report
runs-on: ubuntu-latest
permissions:
actions: read
checks: write
contents: read
packages: write
steps:
- name: Test report - ignore-this - IgnoreThis.Tests
if: github.event.workflow.name == 'ignore-this/ci'
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5
with:
artifact: test-results
name: Test Report - IgnoreThis.Tests
path: IgnoreThis.Tests.trx
reporter: dotnet-trx
fail-on-error: true
fail-on-empty: true
- name: Test report - access-token-management - AccessTokenManagement.Tests
if: github.event.workflow.name == 'access-token-management/ci'
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5
with:
artifact: test-results
name: Test Report - AccessTokenManagement.Tests
path: AccessTokenManagement.Tests.trx
reporter: dotnet-trx
fail-on-error: true
fail-on-empty: true
- name: Test report - identity-model - IdentityModel.Tests
if: github.event.workflow.name == 'identity-model/ci'
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5
with:
artifact: test-results
name: Test Report - IdentityModel.Tests
path: IdentityModel.Tests.trx
reporter: dotnet-trx
fail-on-error: true
fail-on-empty: true
- name: Test report - identity-model - IdentityModel.Tests-net481
if: github.event.workflow.name == 'identity-model/ci'
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5
with:
artifact: test-results-net481
name: Test Report - IdentityModel.Tests-net481
path: IdentityModel.Tests-net481.trx
reporter: dotnet-trx
fail-on-error: true
fail-on-empty: true
- name: Test report - identity-model-oidc-client - IdentityModel.OidcClient.Tests
if: github.event.workflow.name == 'identity-model-oidc-client/ci'
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5
with:
artifact: test-results
name: Test Report - IdentityModel.OidcClient.Tests
path: IdentityModel.OidcClient.Tests.trx
reporter: dotnet-trx
fail-on-error: true
fail-on-empty: true
- name: Test report - introspection - AspNetCore.Authentication.OAuth2Introspection.Tests
if: github.event.workflow.name == 'introspection/ci'
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5
with:
artifact: test-results
name: Test Report - AspNetCore.Authentication.OAuth2Introspection.Tests
path: AspNetCore.Authentication.OAuth2Introspection.Tests.trx
reporter: dotnet-trx
fail-on-error: true
fail-on-empty: true