retrying the gmp library install step #61
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: Dependencies install-with-cpm | |
uses: perl-actions/install-with-cpm@stable | |
with: | |
cpanfile: "cpanfile" | |
sudo: false | |
- name: Run Tests | |
run: | | |
prove -lv t/*.t |