File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ name: coverage
8
8
env :
9
9
COBERTURA_REPORT : cobertura.xml
10
10
COVERALLS_REPORT : coveralls.json
11
+ JSON_REPORT : report.json
12
+ JSON_SUMMARY : summary.json
11
13
HTML_REPORT_DIR : html/
12
14
COVERAGE_ARTIFACT_NAME : coverage-report
13
15
81
83
--txt \
82
84
--cobertura ${{env.COBERTURA_REPORT}} --cobertura-pretty \
83
85
--html-nested ${{env.HTML_REPORT_DIR}} --html-title "mimic++ Coverage Report" \
84
- --coveralls ${{env.COVERALLS_REPORT}} --coveralls-pretty
86
+ --coveralls ${{env.COVERALLS_REPORT}} --coveralls-pretty \
87
+ --json-summary ${{env.JSON_SUMMARY}} --json-summary-pretty \
88
+ --json ${{env.JSON_REPORT}} -- json-pretty
85
89
86
90
- name : Upload gcov coverage report artifacts
87
91
uses : actions/upload-artifact@v4
97
101
path : |
98
102
${{env.COBERTURA_REPORT}}
99
103
${{env.COVERALLS_REPORT}}
104
+ ${{env.JSON_REPORT}}
105
+ ${{env.JSON_SUMMARY}}
100
106
${{env.HTML_REPORT_DIR}}
101
107
if-no-files-found : error
102
108
You can’t perform that action at this time.
0 commit comments