From: Arthur Axel 'fREW' Schmidt Date: Sat, 9 Nov 2013 00:43:00 +0000 (-0600) Subject: test on travis X-Git-Tag: v1.14~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Action-REST.git;a=commitdiff_plain;h=c5af27c04f1ffc3071001e95096a70891c5ff585 test on travis --- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..c118bfc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,20 @@ +language: perl +perl: + - "5.18" + - "5.16" + - "5.14" + - "5.12" + - "5.10" + - "5.8" + +install: + - export RELEASE_TESTING=1 AUTOMATED_TESTING=1 AUTHOR_TESTING=1 HARNESS_OPTIONS=j10:c HARNESS_TIMER=1 + - cpanm --quiet --notest Devel::Cover::Report::Coveralls + - cpanm --quiet --notest --installdeps --with-suggests . + +script: + - PERL5OPT=-MDevel::Cover=-coverage,statement,branch,condition,path,subroutine prove -lrsv t + - cover + +after_success: + - cover -report coveralls