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