Skip to content

add more perl versions #7

add more perl versions

add more perl versions #7

Workflow file for this run

name: Build
on:
push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
perl: [
'5.14',
'5.16',
'5.18',
'5.20',
'5.22',
'5.24',
'5.26',
'5.28',
'5.30',
'5.32',
'5.34',
'5.36',
]
name: Perl ${{ matrix.perl }}
steps:
- uses: actions/checkout@v3
- name: Set up Perl ${{ matrix.perl }}
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
- run: perl -V
- name: Install dependencies
run: cpanm --installdeps .
- name: Run prove
run: prove -lv t