Skip to content

Update copyright, metadata, build and test #93

Update copyright, metadata, build and test

Update copyright, metadata, build and test #93

Workflow file for this run

name: CI
on:
push:
branches: ['*']
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
perl: [ '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' ]
name: 🐪 Perl ${{ matrix.perl }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
- run: perl -V
- name: Install dependencies
run: cpanm -vn --installdeps --with-recommends .
- name: Run tests
run: |-
perl Build.PL
./Build test