File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 25
25
cmake --build build --config Debug --target test
26
26
cmake --build build --config Debug --target coverage
27
27
28
- - name : Create test coverage report
28
+ - name : Upload test coverage report to Codecov
29
+ uses : codecov/codecov-action@v4
30
+ with :
31
+ fail_ci_if_error : true # optional (default = false)
32
+ disable_search : true # optional (default = false)
33
+ files : ./build/coverage.cobertura.xml # optional
34
+ flags : unittests # optional
35
+ # name: codecov-umbrella # optional
36
+ token : ${{ secrets.CODECOV_TOKEN }}
37
+ verbose : true # optional (default = false)
38
+
39
+ - name : Create test coverage summary
29
40
uses : irongut/CodeCoverageSummary@v1.3.0
30
41
with :
31
42
filename : build/**/coverage.cobertura.xml
32
43
badge : true
44
+ format : markdown
45
+ output : both
46
+
You can’t perform that action at this time.
0 commit comments