Skip to content

v0.26

v0.26 #17

name: Windows-Strawberry
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['windows-latest']
perl: [ '5.32', '5.30', '5.28' ]
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
distribution: strawberry
- name: perl -V
run: perl -V
- name: Install Dependencies
run: |
cpanm -nq --with-develop --installdeps -v .
- name: Build Module
run: |
perl Makefile.PL
gmake
- name: Run Tests
run: |
gmake test TEST_VERBOSE=1