v5.1.0p4 #261
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: make test | |
on: | |
push: | |
branches: ["5-stable"] | |
pull_request: | |
branches: ["*"] | |
jobs: | |
test: | |
name: Make Test with Perl ${{ matrix.perl }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
perl: ["5.26", "5.38", "5.40"] | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Setup Perl | |
uses: shogo82148/actions-setup-perl@v1 | |
with: | |
perl-version: ${{ matrix.perl }} | |
- name: Install modules | |
run: cpanm --installdeps . | |
- name: Check the Perl version | |
run: perl -v | |
- name: Execute tests | |
run: make test | |