Skip to content

Bump actions/checkout from 6.0.2 to 6.0.3 in the minor-and-patch group #141

Bump actions/checkout from 6.0.2 to 6.0.3 in the minor-and-patch group

Bump actions/checkout from 6.0.2 to 6.0.3 in the minor-and-patch group #141

Workflow file for this run

---
name: macos
on:
push:
branches:
- 'master'
tags-ignore:
- '*'
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
perl:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
perl-version:
- '5.42'
- '5.40'
- '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'
steps:
- uses: actions/checkout@v6.0.3
- name: Setup perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl-version }}
- name: perl -V
run: perl -V
- name: Ensure old Perls have a good toolchain
run: cpanm ExtUtils::Manifest App::cpanminus
- name: Install Dependencies
run: cpanm -n --installdeps .
- name: Run Tests
run: |
perl Makefile.PL
make
make test