Bump version to 20250715.0_01 for release to CPAN #391
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| tags-ignore: | |
| - '*' | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: {} | |
| jobs: | |
| perl: | |
| env: | |
| PERL_USE_UNSAFE_INC: 0 | |
| AUTHOR_TESTING: 1 | |
| AUTOMATED_TESTING: 1 | |
| RELEASE_TESTING: 0 | |
| runs-on: macOS-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: perl -V | |
| run: perl -V | |
| - name: uses install-with-cpm | |
| uses: perl-actions/install-with-cpm@stable | |
| with: | |
| cpanfile: "cpanfile" | |
| # IO-Tty-1.16 exceeded 60s default | |
| args: "--configure-timeout=600 --with-recommends --with-suggests" | |
| sudo: false | |
| - name: Makefile.PL | |
| run: perl Makefile.PL | |
| - name: make test | |
| run: make test |