-
-
Notifications
You must be signed in to change notification settings - Fork 2
96 lines (88 loc) · 2.57 KB
/
Copy pathtest-reports.yml
File metadata and controls
96 lines (88 loc) · 2.57 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
name: Test Reports
on:
workflow_run:
workflows: [ 'Code tests & eval' ]
types:
- completed
permissions:
contents: read
actions: read
checks: write
pull-requests: read
jobs:
report:
runs-on: ubuntu-22.04
if: always()
steps:
- name: Test Report - FOSS Debug
uses: dorny/test-reporter@v2.1.1
if: always()
with:
name: 'Unit Tests - testFoss Debug'
artifact: test-results-testFoss-Debug
path: '**/*.xml'
reporter: java-junit
fail-on-error: false
list-suites: 'failed'
list-tests: 'failed'
max-annotations: 10
- name: Test Report - FOSS Beta
uses: dorny/test-reporter@v2.1.1
if: always()
with:
name: 'Unit Tests - testFoss Beta'
artifact: test-results-testFoss-Beta
path: '**/*.xml'
reporter: java-junit
fail-on-error: false
list-suites: 'failed'
list-tests: 'failed'
max-annotations: 10
- name: Test Report - FOSS Release
uses: dorny/test-reporter@v2.1.1
if: always()
with:
name: 'Unit Tests - testFoss Release'
artifact: test-results-testFoss-Release
path: '**/*.xml'
reporter: java-junit
fail-on-error: false
list-suites: 'failed'
list-tests: 'failed'
max-annotations: 10
- name: Test Report - GPlay Debug
uses: dorny/test-reporter@v2.1.1
if: always()
with:
name: 'Unit Tests - testGplay Debug'
artifact: test-results-testGplay-Debug
path: '**/*.xml'
reporter: java-junit
fail-on-error: false
list-suites: 'failed'
list-tests: 'failed'
max-annotations: 10
- name: Test Report - GPlay Beta
uses: dorny/test-reporter@v2.1.1
if: always()
with:
name: 'Unit Tests - testGplay Beta'
artifact: test-results-testGplay-Beta
path: '**/*.xml'
reporter: java-junit
fail-on-error: false
list-suites: 'failed'
list-tests: 'failed'
max-annotations: 10
- name: Test Report - GPlay Release
uses: dorny/test-reporter@v2.1.1
if: always()
with:
name: 'Unit Tests - testGplay Release'
artifact: test-results-testGplay-Release
path: '**/*.xml'
reporter: java-junit
fail-on-error: false
list-suites: 'failed'
list-tests: 'failed'
max-annotations: 10