Skip to content

Checking in changes prior to tagging of version 0.01_5. #59

Checking in changes prior to tagging of version 0.01_5.

Checking in changes prior to tagging of version 0.01_5. #59

Workflow file for this run

name: linux
on:
push:
branches:
- master
pull_request:
jobs:
perl:
runs-on: ubuntu-latest
strategy:
matrix:
perl-version:
- '5.30'
- '5.32'
- '5.34'
- '5.36'
- '5.38'
- '5.40'
container:
image: perl:${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v3
- name: Install cpm
run: curl -fsSL https://raw.githubusercontent.com/skaji/cpm/main/cpm | perl - install -g App::cpm
- name: Install dependencies
run: cpm install -g
- name: Run tests
run: prove -l t