Codecov Perl example
Append to your
circle.yml
file
machine:
environment:
PATH: ~/perl5/bin:$PATH
dependencies:
pre:
- curl -L https://cpanmin.us | perl - App::cpanminus
- cpanm --local-lib=~/perl5 local::lib && echo "eval $(perl -I ~/perl5/lib/perl5/ -Mlocal::lib)" >> ~/.bashrc
- cpanm --quiet --notest --skip-satisfied Devel::Cover::Report::Codecov
test:
override:
- perl Build.PL
- ./Build build
- cover -test
post:
- cover -report codecov
Append to your
Setup Commands
curl -L https://cpanmin.us | perl - App::cpanminus
export PATH=~/perl5/bin:$PATH
cpanm --local-lib=~/perl5 local::lib && eval $(perl -I ~/perl5/lib/perl5/ -Mlocal::lib)
cpanm --quiet --installdeps --notest .
cpanm --quiet --notest --skip-satisfied Devel::Cover::Report::Codecov
Append to your
Test Commands
perl Build.PL
./Build build
cover -test -report codecov
Add to your .travis.yml
file.
language: perl
before_script:
- cpanm --quiet --notest --skip-satisfied Devel::Cover::Report::Codecov
script:
- perl Build.PL
- ./Build build
- cover -test
after_success:
- cover -report codecov
Add to your .github/workflows/main.yml
file
jobs:
codecov:
runs-on: ubuntu-latest
container: perl:latest
steps:
- uses: actions/checkout@v2
- name: Run codecov GitHub Action
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: |
cpanm --quiet --notest Module::Build Devel::Cover Devel::Cover::Report::Codecovbash
perl Build.PL
cover -test -report codecov
Note that you need to link your GitHub repo to your codecov first and then add the CODECOV_TOKEN
as a secret to your GitHub repository.
cover -report codecov
Repository tokens are required for (a) all private repos, (b) public repos not using Travis-CI, CircleCI or AppVeyor. Find your repository token at Codecov and provide via appending -t <your upload token>
to you where you upload reports.
MIT.
Originally authored by Jakub Elżbieciak.