Skip to content

Change URLs and update last modification dates #61

Change URLs and update last modification dates

Change URLs and update last modification dates #61

Workflow file for this run

name: Perl-CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
perl:
- '5.34'
- '5.32'
name: Perl ${{ matrix.perl }}
steps:
- uses: actions/checkout@v1
- name: Setup perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
- name: Perl version
run: perl -V
- name: Install dependencies
run: cpanm --quiet --installdeps --notest .
- name: Build
run: perl Build.PL && ./Build && ./Build test