File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 86
86
name : test-results
87
87
path : " */**/target/*-reports/*.xml"
88
88
89
+ - name : Parse test results
90
+ uses : mikepenz/action-junit-report@v5
91
+ if : ${{ always() }}
92
+ with :
93
+ check_name : Unit tests report
94
+ require_tests : true
95
+ report_paths : " */**/target/*-reports/*.xml"
96
+ follow_symlink : true
97
+ updateComment : false
98
+ skip_annotations : true
99
+
89
100
setup-integration-tests :
90
101
name : Setup ITs
91
102
runs-on : ubuntu-20.04
@@ -168,6 +179,18 @@ jobs:
168
179
name : ccm-logs-cassandra-${{ matrix.cassandra-version }}
169
180
path : /tmp/*-0/ccm*/node*/logs/*
170
181
182
+ - name : Parse test results
183
+ uses : mikepenz/action-junit-report@v5
184
+ if : ${{ always() }}
185
+ with :
186
+ check_name : Integration tests report for Cassandra ${{ matrix.cassandra-version }}
187
+ require_tests : true
188
+ report_paths : " */**/target/*-reports/*.xml"
189
+ follow_symlink : true
190
+ detailed_summary : true
191
+ updateComment : false
192
+ skip_annotations : true
193
+
171
194
scylla-integration-tests :
172
195
name : Scylla ITs
173
196
runs-on : ubuntu-20.04
@@ -225,3 +248,15 @@ jobs:
225
248
with :
226
249
name : ccm-logs-scylla-${{ matrix.scylla-version }}
227
250
path : /tmp/*-0/ccm*/node*/logs/*
251
+
252
+ - name : Parse test results
253
+ uses : mikepenz/action-junit-report@v5
254
+ if : ${{ always() }}
255
+ with :
256
+ check_name : Integration tests report for Scylla ${{ matrix.scylla-version }}
257
+ require_tests : true
258
+ report_paths : " */**/target/*-reports/*.xml"
259
+ follow_symlink : true
260
+ detailed_summary : true
261
+ updateComment : false
262
+ skip_annotations : true
You can’t perform that action at this time.
0 commit comments