File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -37,13 +37,24 @@ jobs:
37
37
JAVA_OPTS : " -Xmx8g -Dfile.encoding=UTF-8 -Djava.awt.headless=true -Dkotlin.daemon.jvm.options=-Xmx6g"
38
38
39
39
- name : Upload Reports
40
- if : always()
40
+ if : ${{ !cancelled() }}
41
41
uses : actions/upload-artifact@v4
42
42
with :
43
43
name : reports
44
44
path : |
45
45
**/build/reports/
46
46
47
+ - name : Publish Test Report
48
+ uses : mikepenz/action-junit-report@v5
49
+ if : ${{ !cancelled() }} # always run even if the previous step fails
50
+ with :
51
+ report_paths : ' **/test-results/**/TEST-*.xml'
52
+ detailed_summary : true
53
+ flaky_summary : true
54
+ include_empty_in_summary : false
55
+ include_time_in_summary : true
56
+ annotate_only : true
57
+
47
58
- name : Disable Auto-Merge on Fail
48
59
if : failure() && github.event_name == 'pull_request'
49
60
run : gh pr merge --disable-auto "$PR_URL"
You can’t perform that action at this time.
0 commit comments