2.05 fix 1 reference to deprecated switch that was missed. #76
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Math::BigInt::GMP is currently not installable on the github actions mac | |
# environment, so no matter what this | |
# test will fail. | |
# common ci conf 2021-09-11 | |
name: MacOS | |
# Controls when the action will run. | |
on: | |
push: | |
branches: [ master, stv, btr, development ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
perl_tester: | |
runs-on: macos-latest | |
name: "macos perl v${{ matrix.perl }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
perl: | |
- "5.40" | |
- "5.38" | |
- "5.36" | |
- "5.24" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up perl | |
uses: shogo82148/actions-setup-perl@v1 | |
with: | |
perl-version: ${{ matrix.perl }} | |
- run: perl -V | |
- name: Dependencies install-with-cpm | |
continue-on-error: true | |
uses: perl-actions/install-with-cpm@stable | |
with: | |
cpanfile: "cpanfile" | |
sudo: false | |
- name: Run Tests | |
run: | | |
export MACARM=true; prove -lv t/*.t |