Skip to content

v0.34

v0.34 #18

Workflow file for this run

name: Perl Matrix Testing
on:
- push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ 'windows-latest', 'macos-latest']
perl: [ '5.34', '5.32', '5.30' ]
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
- run: perl -V
- run: cpanm --installdeps .
- run: prove -lv t