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.
1 parent ca47348 commit e6ca85eCopy full SHA for e6ca85e
.github/workflows/flutter.yml
@@ -39,12 +39,13 @@ jobs:
39
run: flutter test --coverage
40
41
- name: Upload coverage to Codecov
42
+ run: bash <(curl -s https://codecov.io/bash)
43
env:
- API_KEY: ${{ secrets.COVERAGE_KEY }}
44
+ COVERAGE_KEY: ${{ secrets.COVERAGE_KEY }}
45
uses: codecov/codecov-action@v2
46
with:
47
files: ./coverage/lcov.info
48
flags: flutter
49
name: code-coverage-report
- token: $API_KEY
50
+ token: COVERAGE_KEY
51
fail_ci_if_error: true
0 commit comments