ci: build workflow - force coverage upload even on failed tests
This commit is contained in:
parent
e1c8b5efe4
commit
32bf50ef1b
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -126,11 +126,13 @@ jobs:
|
|||
|
||||
- name: Upload Coverage Results to Codecov
|
||||
uses: codecov/codecov-action@v2.1.0
|
||||
if: ${{ always() }}
|
||||
with:
|
||||
files: coverage.json
|
||||
|
||||
- name: Upload Coverage Results as Build Artifact
|
||||
uses: actions/upload-artifact@v3.0.0
|
||||
if: ${{ always() }}
|
||||
with:
|
||||
name: coverage
|
||||
path: coverage.json
|
||||
|
|
Loading…
Reference in a new issue