Last active
February 1, 2017 16:34
-
-
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/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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