Skip to content

Merge pull request #133 from bayashi/readme #133

Merge pull request #133 from bayashi/readme

Merge pull request #133 from bayashi/readme #133

name: linux_old_versions
on:
push:
branches:
- main
tags-ignore:
- '*'
paths-ignore:
- '**/*.md'
- '**/.gitignore'
jobs:
perl:
runs-on: ubuntu-latest
strategy:
matrix:
perl-version:
- '5.28'
- '5.36'
- '5.40'
container:
image: perl:${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v3
- name: perl -V
run: perl -V
- name: Install dependencies
run: curl -sL https://git.io/cpm | perl - install -g --with-recommends --with-test --with-configure --show-build-log-on-failure
if: matrix.perl-version == '5.8'
- name: Install dependencies With develop
run: curl -sL https://git.io/cpm | perl - install -g --with-recommends --with-test --with-configure --with-develop --show-build-log-on-failure
if: matrix.perl-version != '5.8'
- name: Run build
run: perl Build.PL
- name: Build manifest
run: ./Build manifest
- name: Run test
run: ./Build test