We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6a05891 + 7a628e6 commit 73c1df6Copy full SHA for 73c1df6
1 file changed
.github/workflows/ci-tests.yaml
@@ -34,8 +34,14 @@ jobs:
34
perl Build.PL
35
./Build build
36
- name: Run tests
37
+ if: matrix.perl != 'latest'
38
run: |
- TEST_SHARED=1 TEST_SUBREAPER=1 cover -test -report codecovbash
39
+ TEST_SHARED=1 TEST_SUBREAPER=1 prove -l t
40
+ - name: Run tests with coverage
41
+ if: matrix.perl == 'latest'
42
+ run: |
43
+ TEST_SHARED=1 TEST_SUBREAPER=1 PERL5OPT="-MDevel::Cover=-coverage,statement" prove -l t
44
+ cover -report codecovbash
45
- name: Upload coverage to ☂️ Codecov
46
uses: codecov/codecov-action@v5
47
if: matrix.perl == 'latest'
0 commit comments