File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -25,18 +25,17 @@ jobs:
25
25
- run : dart --version
26
26
- run : flutter --version
27
27
28
- - name : Install sqlite3-dev
29
- run : sudo apt install libsqlite3-dev lcov
30
-
31
- - name : Install app dependencies
32
- run : flutter pub get
28
+ - name : Install dependencies
29
+ run : |
30
+ sudo apt install libsqlite3-dev lcov
31
+ flutter pub get
33
32
34
33
# Removing some folders from the coverage since these files are not really
35
34
# part of the app code and just get in the way of the report
36
35
- name : Test app
37
36
run : |
38
37
flutter test --coverage
39
- lcov --remove coverage/lcov.info 'lib/l10n/generated/*' 'lib/theme/*'
38
+ lcov --remove coverage/lcov.info 'lib/l10n/generated/*' 'lib/theme/*' -o coverage/lcov.info
40
39
41
40
- name : Coveralls
42
41
uses : coverallsapp/github-action@v2
You can’t perform that action at this time.
0 commit comments