Merge pull request #119 from timlegge/aix #73
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
name: macos-latest | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
pull_request: | |
jobs: | |
perl: | |
runs-on: macOS-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install dependencies | |
run: | | |
brew install openssl@1.1 | |
- name: uses install-with-cpanm | |
uses: perl-actions/install-with-cpanm@v1 | |
with: | |
cpanfile: "cpanfile" | |
args: "--with-configure" | |
sudo: false | |
- name: perl -V | |
run: perl -V | |
- name: Run Tests | |
run: | | |
perl Makefile.PL | |
make | |
make test |