From e82e1a75e0d588b0c46f77f361274e0a07a2df74 Mon Sep 17 00:00:00 2001 From: simbabque Date: Fri, 29 Sep 2017 21:42:11 +0200 Subject: [PATCH] add travis configuration file including coverage --- .travis.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..373a9dc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,22 @@ +language: perl +sudo: false +perl: + - "5.10" + - "5.12" + - "5.14" + - "5.16" + - "5.18" + - "5.20" + - "5.22" + - "5.24" + - "5.26" + - "blead" +matrix: + include: + - perl: 5.18 + env: COVERAGE=1 # enables coverage+coveralls reporting + allow_failures: + - perl: blead # ignore failures for blead perl +before_install: + - eval $(curl https://travis-perl.github.io/init) --auto +