1language: "perl"
2perl:
3  - "5.16"
4  - "5.14"
5  - "5.12"
6  - "5.10"
7
8install:
9    - cpanm -v --installdeps --notest --mirror http://cpan.mirrors.travis-ci.org .
10
11script: "perl Makefile.PL; make test"
12
13notifications:
14  recipients:
15    - dana@acm.org
16  email:
17    on_success: change
18    on_failure: always
19