Skip to content

Commit

Permalink
feat(ci): include token in the codecov action
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardodalarme committed May 6, 2024
1 parent 3b0796c commit 8302627
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/code-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: subosito/flutter-action@v2
with:
Expand All @@ -27,16 +27,17 @@ jobs:

- name: Upload Coverage to Codecov
if: github.event_name == 'push'
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/lcov.info
fail_ci_if_error: true

lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: subosito/flutter-action@v2
with:
Expand Down

0 comments on commit 8302627

Please sign in to comment.