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 db7c37e commit 539cb00Copy full SHA for 539cb00
.github/workflows/ci.yml
@@ -33,6 +33,11 @@ jobs:
33
flutter test --coverage
34
lcov --remove coverage/lcov.info 'lib/l10n/generated/*' 'lib/theme/*' -o coverage/lcov.info
35
36
+ # Removing some folders from the coverage since these files are not really
37
+ # part of the app code and just get in the way of the report
38
+ - name: Filter coverage report
39
+ run: lcov --remove coverage/lcov.info 'lib/l10n/generated/*' 'lib/theme/*'
40
+
41
- name: Coveralls
42
uses: coverallsapp/github-action@v2
43
with:
0 commit comments