File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 7373 id : test
7474 uses : ./ci/github-actions/arch-run
7575 with :
76- command : cargo install cargo-tarpaulin; cargo tarpaulin --engine llvm --out Xml
76+ command : |
77+ cargo install cargo-junit cargo-tarpaulin
78+ cargo tarpaulin --engine llvm --out Xml
79+ cargo junit --name junit.xml
80+
81+ - name : Upload test results to Codecov
82+ # any except canceled or skipped
83+ if : >-
84+ always() &&
85+ (steps.test.outcome == 'success' || steps.test.outcome == 'failure') &&
86+ startsWith(github.repository, 'LizardByte/')
87+ uses : codecov/test-results-action@v1
88+ with :
89+ disable_search : true
90+ fail_ci_if_error : true
91+ files : junit.xml
92+ handle_no_reports_found : true
93+ token : ${{ secrets.CODECOV_TOKEN }}
94+ verbose : true
7795
7896 - name : Upload coverage
7997 # any except canceled or skipped
You can’t perform that action at this time.
0 commit comments