Skip to content

v0.14.0

v0.14.0 #58

Workflow file for this run

name: windows
on:
push:
branches: [ '*' ]
pull_request:
branches: [ master ]
jobs:
perl:
runs-on: windows-latest
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v3
- name: Set up Perl
run: |
choco install strawberryperl
echo "C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: perl -V
run: perl -V
- name: Install deps
run: >
cpanm --quiet --notest
Test::More YAML::PP
- name: Run Tests
run: |
perl Makefile.PL
make
prove -br t