Skip to content

Add perl 5.40 (not for windows) #15

Add perl 5.40 (not for windows)

Add perl 5.40 (not for windows) #15

Workflow file for this run

name: windows
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
jobs:
perl:
runs-on: windows-latest
strategy:
fail-fast: true
matrix:
perl-version:
# - '5.40' Not yet for windows.
- '5.38'
- '5.14'
steps:
- name: Setup perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl-version }}
distribution: strawberry
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v4
- name: perl -V
run: perl -V
- name: Ensure old Strawberries have a good toolchain
run: cpanm ExtUtils::Manifest App::cpanminus
- name: Install Dependencies
run: cpanm --installdeps .
- name: Run Tests
run: cpanm --test-only -v .