Prep for 0.014 #43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: author-testing | |
on: | |
push: | |
branches: | |
- "*" | |
tags-ignore: | |
- "*" | |
pull_request: | |
jobs: | |
perl: | |
runs-on: ubuntu-latest | |
env: | |
PERL_USE_UNSAFE_INC: 0 | |
AUTHOR_TESTING: 1 | |
AUTOMATED_TESTING: 1 | |
RELEASE_TESTING: 1 | |
PERL_CARTON_PATH: $GITHUB_WORKSPACE/local | |
strategy: | |
fail-fast: false | |
matrix: | |
perl-version: | |
- "5.30" | |
container: | |
image: perldocker/perl-tester:${{ matrix.perl-version }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: perl -V | |
run: perl -V | |
- name: Install Author Dependencies | |
run: dzil authordeps | cpm install -g --show-build-log-on-failure - | |
- name: Install Dependencies | |
run: dzil listdeps | cpanm | |
# cannot use cpm due to https://github.com/skaji/cpm/issues/161 | |
#run: dzil listdeps | cpm install -g --show-build-log-on-failure - | |
- name: dzil test | |
run: dzil test |