Skip to content
Merged
Show file tree
Hide file tree
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
48 changes: 48 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
jobs:
test:
parameters:
perl-version:
description: The Perl version we want to test with
type: string
default: "5.34"
docker:
- image: perldocker/perl-tester:<< parameters.perl-version >>
steps:
- checkout
- run:
command:
cpm install -g --no-test Dist::Zilla Dist::Zilla::App::Command::cover
name: Install Dzil
- run:
name: Install dzil author dependencies
command: |
cpm install -g \
-w 2 \
--mirror=http://cpan.cpantesters.org/ $(dzil authordeps --missing)
- run:
name: Install dist deps
command: |
cpm install -g \
-w 2 \
--mirror=http://cpan.cpantesters.org/ $(dzil listdeps --author --missing)
- run:
name: Run Tests
command: |
dzil smoke --release --author && dzil cover -test && dzil xtest

workflows:
build-workflow:
jobs: &1
- test:
matrix:
parameters:
perl-version:
- "5.20"
- "5.22"
- "5.24"
- "5.26"
- "5.28"
- "5.30"
- "5.32"
- "5.34"
version: 2.1
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.