Skip to content

Merge pull request #20 from hakonhagland/gh_actions #14

Merge pull request #20 from hakonhagland/gh_actions

Merge pull request #20 from hakonhagland/gh_actions #14

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.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 .