Skip to content

Version 0.178.0

Version 0.178.0 #8

Workflow file for this run

name: testsuite
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
jobs:
# a cheap and easy job to avoid checking all Perl versions
ubuntu:
env:
PERL_USE_UNSAFE_INC: 0
AUTHOR_TESTING: 1
AUTOMATED_TESTING: 1
RELEASE_TESTING: 1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: perl -V
- name: install dependencies
uses: perl-actions/[email protected]
with:
install: |
Carp
Module::Build
Scalar::Util
SUPER
Test::More
Test::Warnings
- run: perl Build.PL
- run: ./Build
- run: ./Build test
perl:
env:
# some plugins still needs this to run their tests...
PERL_USE_UNSAFE_INC: 0
AUTHOR_TESTING: 1
AUTOMATED_TESTING: 1
RELEASE_TESTING: 1
runs-on: ubuntu-latest
needs: [ubuntu]
strategy:
fail-fast: false
matrix:
perl-version:
- '5.38'
- '5.36'
- '5.34'
- '5.32'
- '5.30'
- '5.28'
- '5.26'
- '5.24'
- '5.22'
- '5.20'
- '5.18'
- '5.16'
- '5.14'
- '5.12'
- '5.10'
container:
image: perldocker/perl-tester:${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v4
- run: perl -V
- run: perl Build.PL
- run: ./Build
- run: ./Build test