We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 899d144 + 5e7b2c4 commit a7a5fe2Copy full SHA for a7a5fe2
1 file changed
.github/workflows/ci-linux.yaml
@@ -32,12 +32,16 @@ jobs:
32
# perl-version: ${{ matrix.perl }}
33
run: |
34
cpanm --installdeps .
35
- cpanm -n Test::Pod Test::Pod::Coverage Module::Build Devel::Cover::Report::Codecov
+ cpanm -n Test::Pod Test::Pod::Coverage Module::Build Devel::Cover Devel::Cover::Report::Codecovbash
36
perl Build.PL
37
./Build build
38
- name: Run tests
39
40
- TEST_SHARED=1 TEST_SUBREAPER=1 cover -test
41
- - name: Report coverage
42
- run: |
43
- cover -report codecov
+ TEST_SHARED=1 TEST_SUBREAPER=1 cover -test -report codecovbash
+ - name: Upload coverage to Codecov
+ uses: codecov/codecov-action@v2
+ if: matrix.perl == '5.30'
44
+ with:
45
+ file: cover_db/codecov.json
46
+ fail_ci_if_error: true
47
+ verbose: true
0 commit comments