Merge pull request #135 from bayashi/bump-version #135
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: mac_latest | |
on: | |
push: | |
branches: | |
- main | |
tags-ignore: | |
- '*' | |
paths-ignore: | |
- '**/*.md' | |
- '**/.gitignore' | |
jobs: | |
perl: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: perl -V | |
run: perl -V | |
- name: Install dependencies | |
run: curl -sL https://git.io/cpm | perl - install -g --with-recommends --with-test --with-configure --with-develop --show-build-log-on-failure | |
- name: Run build | |
run: perl Build.PL | |
- name: Build manifest | |
run: ./Build manifest | |
- name: Run test | |
run: ./Build test |