Skip to content

Commit

Permalink
allow codecov upload to fail (#4221)
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Oct 19, 2020
1 parent d3567c3 commit 7c4f80a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci_test-base.yml
Expand Up @@ -88,6 +88,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
2 changes: 2 additions & 0 deletions .github/workflows/ci_test-full.yml
Expand Up @@ -138,6 +138,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
2 changes: 2 additions & 0 deletions .github/workflows/ci_test-tpu.yml
Expand Up @@ -126,6 +126,8 @@ jobs:

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
# see: https://github.com/actions/toolkit/issues/399
continue-on-error: true
if: always()
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down

0 comments on commit 7c4f80a

Please sign in to comment.