trying mbg as a suggested file. #66
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
# 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.38" | |
# - "5.40" | |
# - "5.36" | |
# - "5.32" | |
# - "5.28" | |
# - "5.24" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install gmp library | |
uses: amitie10g/install-package@v1 | |
with: | |
brew: gmp | |
- name: Set up perl | |
uses: shogo82148/actions-setup-perl@v1 | |
with: | |
perl-version: ${{ matrix.perl }} | |
- run: perl -V | |
# - name: "Install Math::BigInt::GMP with force" | |
# continue-on-error: true | |
# run: cpan -f -T notest Math::BigInt::GMP | |
- 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: | | |
prove -lv t/*.t |