Skip to content

Merge pull request #21 from yewtc/master #16

Merge pull request #21 from yewtc/master

Merge pull request #21 from yewtc/master #16

Workflow file for this run

name: macos
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
jobs:
perl:
runs-on: macOS-latest
strategy:
matrix:
perl-version:
- '5.40'
- '5.38'
- '5.18'
- '5.10'
steps:
- uses: actions/checkout@v4
- 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