Skip to content

Commit

Permalink
fix: fail ci if error
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu-codecov committed Dec 18, 2024
1 parent 6070dfa commit 42be75c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,24 @@ jobs:
- name: Upload coverage to Codecov (arg token)
uses: codecov/codecov-action@main
with:
verbose: true
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
- name: Upload coverage to Codecov (env token)
uses: codecov/codecov-action@main
with:
fail_ci_if_error: true
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Upload coverage to Codecov (no token)
uses: codecov/codecov-action@main
with:
fail_ci_if_error: true
verbose: true
- name: Upload coverage to Codecov (oidc)
uses: codecov/codecov-action@main
with:
verbose: true
fail_ci_if_error: true
use_oidc: true
verbose: true

0 comments on commit 42be75c

Please sign in to comment.