Merge pull request #190 from leonerd/backcompat-booleans #14
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: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
perl: [ '5.20', '5.22', '5.24', '5.26', '5.28', '5.30', '5.32', '5.34', '5.36', '5.36-threaded' ] | |
# See options here: https://hub.docker.com/_/perl/tags | |
runs-on: ubuntu-latest | |
name: perl ${{matrix.perl}} | |
container: perl:${{matrix.perl}} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Show perl version | |
run: | | |
perl -v | |
- name: Install modules | |
run: | | |
cpanm --installdeps . | |
- name: Build module and execute tests | |
env: | |
AUTHOR_TESTING: 1 | |
RELEASE_TESTING: 1 | |
run: | | |
perl Makefile.PL | |
make | |
make test |