Merge pull request #123 from sandbergja/claudebot #105
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: windows_latest | |
on: | |
push: | |
branches: | |
- main | |
- '**windows**' | |
tags-ignore: | |
- '*' | |
paths-ignore: | |
- '**/*.md' | |
- '**/.gitignore' | |
jobs: | |
perl: | |
runs-on: windows-latest | |
steps: | |
- 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" >> $GITHUB_PATH | |
- name: perl -V | |
run: perl -V | |
- name: Install dependencies | |
run: curl -sL https://git.io/cpm | perl - install -g --with-recommends --with-test --with-configure --with-develop --show-build-log-on-failure | |
- name: Run build | |
run: perl Build.PL | |
- name: Build manifest | |
run: ./Build manifest | |
- name: Run test | |
run: ./Build test |