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 7b4f767 commit e10b49fCopy full SHA for e10b49f
.github/workflows/ci.yml
@@ -22,10 +22,6 @@ jobs:
22
- run: flutter pub get
23
- run: flutter analyze
24
- run: flutter test --coverage
25
- - uses: codecov/codecov-action@v1
26
- with:
27
- token: ${{ secrets.CODECOV_TOKEN }}
28
- file: coverage/lcov.info
29
30
build_android_apk:
31
name: Build Flutter (Anroid APK)
@@ -68,6 +64,16 @@ jobs:
68
64
with:
69
65
name: release-appbundle
70
66
path: build/app/outputs/bundle/release/app-release.aab
67
+
+ deploy_to_codecov:
+ name: Deploy coverage to Codecov
+ needs: [flutter_test]
71
+ runs-on: ubuntu-latest
72
+ steps:
73
+ - uses: codecov/codecov-action@v1
74
+ with:
75
+ token: ${{ secrets.CODECOV_TOKEN }}
76
+ file: coverage/lcov.info
77
78
# build_ios:
79
# name: Build Flutter (iOS)
0 commit comments