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 466b646 commit 1ce312fCopy full SHA for 1ce312f
.github/workflows/ci.yml
@@ -32,13 +32,14 @@ jobs:
32
- name: Install dependencies
33
run: flutter pub get
34
35
- # Uncomment this step to verify the use of 'dart format' on each commit.
36
- # - name: Verify formatting
37
- # run: dart format --output=none --set-exit-if-changed .
+ - name: Verify formatting
+ run: dart format --output=none --set-exit-if-changed .
38
39
- # Consider passing '--fatal-infos' for slightly stricter analysis.
40
- name: Analyze project source
41
- run: flutter analyze
+ run: flutter analyze --fatal-infos
42
43
- name: Run tests
44
run: flutter test --coverage
+
+ - name: Upload coverage to Codecov
45
+ uses: codecov/codecov-action@v3
0 commit comments