t/87-xs-cross.t: remove TODO from tests, add test using "pp --clean ..." #60
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: Perl CI | |
on: | |
push: | |
branches: [ "master", "ci" ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ['windows-latest'] | |
perl: | |
- '5.32' | |
- '5.36' | |
- '5.38' | |
name: Perl ${{ matrix.perl }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up perl | |
uses: shogo82148/actions-setup-perl@v1 | |
id: setup | |
with: | |
perl-version: ${{ matrix.perl }} | |
distribution: strawberry | |
install-modules-with: cpanm | |
- run: | | |
$env:PATH | |
Get-Command perl -All | Format-Table CommandType, Name, Definition | |
- run: perl Makefile.PL | |
- run: gmake | |
- run: prove -b -v |