-
Notifications
You must be signed in to change notification settings - Fork 45
105 lines (104 loc) · 4.09 KB
/
generate-test-reports.yml
File metadata and controls
105 lines (104 loc) · 4.09 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# 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'
- 'memory-cache/ci'
- 'razor-slices/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-net10.0
if: github.event.workflow.name == 'ignore-this/ci'
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5
with:
artifact: test-results
name: Test Report - IgnoreThis.Tests-net10.0
path: IgnoreThis.Tests-net10.0.trx
reporter: dotnet-trx
fail-on-error: true
fail-on-empty: true
- name: Test report - access-token-management - AccessTokenManagement.Tests-net10.0
if: github.event.workflow.name == 'access-token-management/ci'
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5
with:
artifact: test-results
name: Test Report - AccessTokenManagement.Tests-net10.0
path: AccessTokenManagement.Tests-net10.0.trx
reporter: dotnet-trx
fail-on-error: true
fail-on-empty: true
- name: Test report - identity-model - IdentityModel.Tests-net10.0
if: github.event.workflow.name == 'identity-model/ci'
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5
with:
artifact: test-results
name: Test Report - IdentityModel.Tests-net10.0
path: IdentityModel.Tests-net10.0.trx
reporter: dotnet-trx
fail-on-error: true
fail-on-empty: true
- name: Test report - identity-model-oidc-client - IdentityModel.OidcClient.Tests-net10.0
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-net10.0
path: IdentityModel.OidcClient.Tests-net10.0.trx
reporter: dotnet-trx
fail-on-error: true
fail-on-empty: true
- name: Test report - introspection - AspNetCore.Authentication.OAuth2Introspection.Tests-net10.0
if: github.event.workflow.name == 'introspection/ci'
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5
with:
artifact: test-results
name: Test Report - AspNetCore.Authentication.OAuth2Introspection.Tests-net10.0
path: AspNetCore.Authentication.OAuth2Introspection.Tests-net10.0.trx
reporter: dotnet-trx
fail-on-error: true
fail-on-empty: true
- name: Test report - memory-cache - Extensions.Caching.Memory.Tests-net10.0
if: github.event.workflow.name == 'memory-cache/ci'
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5
with:
artifact: test-results
name: Test Report - Extensions.Caching.Memory.Tests-net10.0
path: Extensions.Caching.Memory.Tests-net10.0.trx
reporter: dotnet-trx
fail-on-error: true
fail-on-empty: true
- name: Test report - razor-slices - RazorSlices.Tests-net10.0
if: github.event.workflow.name == 'razor-slices/ci'
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5
with:
artifact: test-results
name: Test Report - RazorSlices.Tests-net10.0
path: RazorSlices.Tests-net10.0.trx
reporter: dotnet-trx
fail-on-error: true
fail-on-empty: true
- name: Test report - razor-slices - SourceGenerator.Tests-net10.0
if: github.event.workflow.name == 'razor-slices/ci'
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5
with:
artifact: test-results
name: Test Report - SourceGenerator.Tests-net10.0
path: SourceGenerator.Tests-net10.0.trx
reporter: dotnet-trx
fail-on-error: true
fail-on-empty: true