add Travis CI config
[gitmo/Moo.git] / .travis.yml
CommitLineData
f3230f2a 1language: perl
2perl:
3 - "5.19"
4 - "5.18"
5 - "5.16"
6 - "5.14"
7 - "5.12"
8 - "5.10"
9 - "5.8"
10before_install:
11 - perlbrew install-cpanm -f
12 - perl -V
13install:
14 - cpanm -nq strictures
15 - cpanm -nq --installdeps --with-develop --with-recommends --with-suggests .
16 - cpanm -nq Devel::Cover::Report::Coveralls
17script:
18 - maint/fulltest --cover
19after_success:
20 - cover -report coveralls
21notifications:
22 email: false
23 on_success: change
24 on_failure: change