diff options
author | Franck Cuny <franckcuny@gmail.com> | 2015-07-07 11:18:29 -0700 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2015-07-07 11:18:29 -0700 |
commit | 791010dd760e19b59de4131027416ad21b76afd3 (patch) | |
tree | 0940626a5df6af204912bd715db1a36a5d09c220 | |
parent | Replace deprecated modules in dist.ini. (diff) | |
download | plack-middleware-etag-791010dd760e19b59de4131027416ad21b76afd3.tar.gz |
Add configuration for Travis.
-rw-r--r-- | .travis.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..6ae4afb --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +language: perl + +perl: + - "5.20" + - "5.18" + - "5.16" + - "5.14" + - "5.12" + - "5.10" + +install: + - dzil authordeps --missing | cpanm --no-skip-satisfied || { cat ~/.cpanm/build.log ; false ; } + - dzil listdeps --author --missing | cpanm --no-skip-satisfied || { cat ~/.cpanm/build.log ; false ; } + +script: + - dzil test --author --release |