Skip to content

Instantly share code, notes, and snippets.

@jonasbn
Last active February 1, 2017 16:34
Show Gist options
  • Save jonasbn/df083f09ec6990ae134b to your computer and use it in GitHub Desktop.
Save jonasbn/df083f09ec6990ae134b to your computer and use it in GitHub Desktop.
My .travis.yml for Perl projects, coveralls integration from http://perlhacks.com/2014/07/github-travis-ci-perl/
language: perl
perl:
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
install:
cpanm --quiet --installdeps --notest . && cpanm --quiet --notest Devel::Cover::Report::Coveralls
script:
- ./Build testcover
after_success:
- cover -report coveralls
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment