We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfe71d7 commit a63355fCopy full SHA for a63355f
.github/workflows/perltest.yml
@@ -42,3 +42,18 @@ jobs:
42
with:
43
name: cpan_log
44
path: $HOME/.cpanm/work/*/build.log
45
+
46
+ coverage:
47
+ runs-on: ubuntu-latest
48
+ container: davorg/perl-coveralls:latest
49
+ name: Test coverage
50
+ steps:
51
+ - uses: actions/checkout@v3
52
+ - run: cpanm --notest File::ShareDir::Install
53
+ - run: cpanm --notest --installdeps .
54
+ - name: Install modules
55
+ run: cpanm -n --installdeps .
56
+ - name: Coverage
57
+ env:
58
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59
+ run: cover -test -report Coveralls
0 commit comments