Skip to content

Build and test Windows #10

Build and test Windows

Build and test Windows #10

name: Build and test Windows
on:
workflow_dispatch
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['windows-latest']
perl: ['5.34']
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Run tests (no coverage)
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
- run: perl -V
- run: cpanm -n --installdeps .
- run: dir
# - run: perl t/args.t
# - run: perl t/cli.t
- run: prove -l t