Skip to content

Add "/path/to/" to the examples #4

Add "/path/to/" to the examples

Add "/path/to/" to the examples #4

Workflow file for this run

---
name: windows
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
jobs:
perl:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- 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 dependencies
run: |
cpanm --quiet --notest --installdeps .
- name: Run tests
run: |
perl Makefile.PL
make test