Skip to content

go-sisimai compatibility 7e8a #218

go-sisimai compatibility 7e8a

go-sisimai compatibility 7e8a #218

Workflow file for this run

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