We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a985479 commit 7f1f619Copy full SHA for 7f1f619
.github/workflows/main.yml
@@ -24,11 +24,10 @@ jobs:
24
- uses: actions/checkout@v4
25
- name: Test
26
run: |
27
- dzil authordeps --missing | cpanm --notest
28
- dzil listdeps --author --missing | cpanm --notest
29
- dzil test --all
30
-
31
- - name: Run tests with coverage
+ dzil authordeps --missing | cpm install --global -w 16 --no-test -
+ dzil listdeps --author --missing | cpm install --global -w 16 --no-test -
+ dzil test --all --keep
+ (cd .build/latest/ && cover -test -ignore local/ -report Coveralls)
32
env:
33
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
34
- run: cover -test -ignore local/ -report Coveralls
+
0 commit comments