Skip to content

Commit

Permalink
#1540 Add codecov_token to avoid rate limits (#1543)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmd-afegbua authored Jul 26, 2023
1 parent 3a9b0e5 commit 1ef77a5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,9 @@ jobs:
name: ethereum-contracts-coverage
path: packages/ethereum-contracts/coverage
- name: Upload ethereum-contracts-coverage to codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: packages/ethereum-contracts/coverage/lcov.info
name: ethereum-contracts-coverage
flags: ethereum-contracts
Expand All @@ -188,8 +189,9 @@ jobs:
name: sdk-core-coverage
path: packages/sdk-core/coverage
- name: Upload sdk-core-coverage to codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: packages/sdk-core/coverage/lcov.info
name: sdk-core-coverage
flags: sdk-core
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci.feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,14 @@ jobs:
run: ./tasks/coverage-cleanup.sh

- name: Upload ethereum-contracts-coverage to codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
name: ethereum-contracts-coverage
flags: ethereum-contracts
fail_ci_if_error: true
verbose: true

test-hot-fuzz:
uses: ./.github/workflows/call.test-hot-fuzz.yml
Expand Down

0 comments on commit 1ef77a5

Please sign in to comment.