Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run tests on newer Perls CPAN PRC #66

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
language: perl
perl:
- "5.24"
- "5.22"
- "5.20"
- "5.18"
- "5.16"
- "5.14"
Expand Down Expand Up @@ -34,6 +37,12 @@ install:

- cpanm --notest ExtUtils::MakeMaker

# Current versions of Dist::Zilla need Perl 5.016 or newer
# but for this distribution travis Dist::Zilla works but
# needs Test::TCP installed on Perls 5.014 or older

- cpanm --notest Test::TCP

- dzil authordeps | cpanm --notest --skip-satisfied
- dzil listdeps --author | cpanm --notest --skip-satisfied

Expand Down