Skip to content

Make tests pass in all CI environments #31

Make tests pass in all CI environments

Make tests pass in all CI environments #31

Workflow file for this run

name: Perl
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 3 * * 0'
jobs:
test:
strategy:
fail-fast: false
matrix:
runner: [ubuntu-latest, macos-latest, windows-latest]
perl: [ '5.24', '5.30', '5.40' ]
runs-on: ${{ matrix.runner }}
name: OS ${{ matrix.runner }} Perl ${{ matrix.perl }}
steps:
- uses: actions/checkout@v3
- name: Set up perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
distribution: ${{ ( startsWith( matrix.runner, 'windows-' ) && 'strawberry' ) || 'default' }}
- name: Show Perl Version
run: |
perl -v
cpanm -v
- name: Check if the code is tidy
if: ${{ startsWith(matrix.runner, 'ubuntu-') && startsWith(matrix.perl, '5.40') }}
run: |
cpanm --notest Perl::Tidy Code::TidyAll
tidyall -a --check-only
- name: Install Dist::Zilla
run: |
cpanm --notest Dist::Zilla
- name: Install Modules
run: |
dzil authordeps --missing | cpanm --notest
dzil listdeps --develop --missing | cpanm --notest
- name: Show Errors on Windows
if: ${{ failure() && startsWith( matrix.runner, 'windows-') }}
run: |
ls -l C:/Users/
ls -l C:/Users/RUNNER~1/
cat C:/Users/runneradmin/.cpanm/work/*/build.log
- name: Show Errors on Ubuntu
if: ${{ failure() && startsWith( matrix.runner, 'ubuntu-') }}
run: |
cat /home/runner/.cpanm/work/*/build.log
- name: Show Errors on OSX
if: ${{ failure() && startsWith( matrix.runner, 'macos-') }}
run: |
cat /Users/runner/.cpanm/work/*/build.log
- name: Run tests
env:
AUTHOR_TESTING: 1
RELEASE_TESTING: 1
run: |
dzil test