From: Graham Knop Date: Sat, 22 Jun 2013 23:37:35 +0000 (-0400) Subject: add Travis CI config X-Git-Tag: v1.003001~13 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f3230f2af7b4643bd6a3af221b33602e07485391;p=gitmo%2FMoo.git add Travis CI config --- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..3e258b1 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,24 @@ +language: perl +perl: + - "5.19" + - "5.18" + - "5.16" + - "5.14" + - "5.12" + - "5.10" + - "5.8" +before_install: + - perlbrew install-cpanm -f + - perl -V +install: + - cpanm -nq strictures + - cpanm -nq --installdeps --with-develop --with-recommends --with-suggests . + - cpanm -nq Devel::Cover::Report::Coveralls +script: + - maint/fulltest --cover +after_success: + - cover -report coveralls +notifications: + email: false + on_success: change + on_failure: change