We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b15f2aa + 95ecc44 commit bb3d597Copy full SHA for bb3d597
.github/workflows/coverage.yml
@@ -8,11 +8,9 @@ on:
8
jobs:
9
build:
10
runs-on: ubuntu-latest
11
- env:
12
- CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
13
steps:
14
# Without this, there are no files in the directory.
15
- - uses: actions/checkout@v3
+ - uses: actions/checkout@4
16
# using flutter
17
- uses: subosito/[email protected]
18
with:
@@ -22,6 +20,7 @@ jobs:
22
20
- run: flutter pub get
23
21
- run: flutter test --coverage
24
# codecov.io
25
- - uses: codecov/codecov-action@v3
+ - uses: codecov/codecov-action@v5
26
27
- file: ./coverage/lcov.info
+ files: ./coverage/lcov.info
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments