Skip to content

Commit

Permalink
do not fail on Codecov upload (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Nov 6, 2020
1 parent bc01085 commit 304a914
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci_test-base.yml
Expand Up @@ -85,6 +85,8 @@ jobs:
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
if: always()
# see: https://github.com/actions/toolkit/issues/399
continue-on-error: true
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.xml
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci_test-full.yml
Expand Up @@ -101,6 +101,9 @@ jobs:
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
if: always()
# see: https://github.com/actions/toolkit/issues/399
continue-on-error: true
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
Expand Down

0 comments on commit 304a914

Please sign in to comment.