added skip to cmp_deeply tests when $] is < 5.12 #42
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: Perl CI with Inline::C and OpenMP | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false # Ensures that one failing job does not cancel others | |
matrix: | |
os: ["ubuntu-latest","ubuntu-22.04"] | |
perl: ["5.40","5.38","5.36","5.34","5.32","5.30","5.28","5.26","5.24","5.22","5.20","5.18","5.16","5.14","5.12","5.10"] | |
name: Perl ${{ matrix.perl }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Perl | |
uses: shogo82148/actions-setup-perl@v1 | |
with: | |
perl-version: ${{ matrix.perl }} | |
- run: perl -V | |
- run: perl -v | |
- name: Install Required Perl Modules | |
run: | | |
cpanm --verbose --notest Module::Build Inline::C Alien::OpenMP \ | |
Util::H2O::More File::Temp Test::Exception Test::Deep \ | |
OpenMP::Environment File::ShareDir | |
- name: Run Tests | |
run: ./test-runner.sh | |
if: always() # Ensures tests run even if a previous step failed |