We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59206ec commit 4744302Copy full SHA for 4744302
1 file changed
.github/workflows/ci.yml
@@ -19,7 +19,7 @@ jobs:
19
uses: dart-lang/setup-dart@v1
20
with:
21
sdk: ${{ matrix.sdk }}
22
-
+
23
- name: Install lcov (macOS)
24
if: matrix.os == 'macos-latest'
25
run: brew install lcov
@@ -34,7 +34,12 @@ jobs:
34
if: matrix.os == 'ubuntu-latest'
35
run: sudo apt-get update && sudo apt-get install -y lcov
36
37
+ - name: Test without coverage report
38
+ if: matrix.os != 'ubuntu-latest'
39
+ run: make tests
40
41
- name: Test and generate coverage report
42
+ if: matrix.os == 'ubuntu-latest'
43
run: make tests_with_coverage_report
44
45
- name: Upload coverage to Coveralls
0 commit comments