Skip to content

Bump actions/checkout from 3 to 4 #46

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #46

Workflow file for this run

---
name: Install from cpanfile
on:
pull_request:
branches:
- '*'
workflow_dispatch:
jobs:
test-job:
runs-on: ubuntu-latest
container:
image: perl:${{ matrix.perl-version }}-buster
strategy:
fail-fast: false
matrix:
perl-version:
- 'devel'
- '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'
- '5.8'
name: Perl ${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v4
- name: Install deps using cpm
uses: perl-actions/install-with-cpm@stable
with:
cpanfile: 'cpanfile'
sudo: false