From b143661891469f9b9162dab3290b06176a72c6a3 Mon Sep 17 00:00:00 2001 From: Nicolas R Date: Thu, 20 Dec 2018 10:06:09 -0600 Subject: [PATCH] Add a basic Travis CI configuration file --- .travis.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..78d1621 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,30 @@ +branches: + except: + - /^issue\d+/ + - /^gh\d+/ +language: perl +matrix: + fast_finish: true +# allow_failures: +# - perl: "5.12" +# - perl: "5.10" +env: + global: + - PERL_USE_UNSAFE_INC=0 + - AUTHOR_TESTING=1 + - AUTOMATED_TESTING=1 + - RELEASE_TESTING=1 +perl: + - "5.28" + - "5.26" + - "5.24" + - "5.22" + - "5.20" + - "5.18" + - "5.16" + - "5.14" + - "5.12" + - "5.10" +script: + - perl Makefile.PL && make test +