add Travis CI config
Graham Knop [Sat, 22 Jun 2013 23:37:35 +0000 (19:37 -0400)]
.travis.yml [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..3e258b1
--- /dev/null
@@ -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