Skip to content

v0.34

v0.34 #27

Workflow file for this run

name: linux
on:
- push
jobs:
perl:
runs-on: ubuntu-latest
strategy:
matrix:
perl-version:
- '5.8'
- '5.10'
- '5.12'
- '5.14'
- '5.16'
- '5.18'
- '5.20'
- '5.22'
- '5.24'
- '5.26'
- '5.28'
- '5.30'
- '5.32'
container:
image: perl:${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v1
#- name: Install OS Packages
# run: |
# apt-get update;
# apt-get -y install xmlsec1;
- name: Install Dependencies
run: |
cpanm --installdeps .
- name: Build Module
run: |
perl Makefile.PL;
make
- name: Run Tests
run: |
prove -lr -l -b -I inc t