Skip to content

Commit

Permalink
chore(ci): wrap codecov upload in a retry (#1178)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tieske authored Jan 22, 2024
1 parent 1f3135f commit bfd04d2
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,20 @@ jobs:
- name: Run tests with Coverage
run: make coverage
- name: Upload Code Coverage
uses: codecov/codecov-action@v3
# this action often fails, hence we wrap it in a retry
# uses: codecov/codecov-action@v3
# with:
# name: codecov-deck
# token: ${{ secrets.CODECOV_TOKEN }}
# fail_ci_if_error: true
uses: Wandalen/[email protected]
with:
name: codecov-deck
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
action: codecov/codecov-action@v3
with: |
name: codecov-deck
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
attempt_limit: 3
attempt_delay: 15000
- name: Build
run: make build

0 comments on commit bfd04d2

Please sign in to comment.