Skip to content

Fix -o option test

Fix -o option test #35

Workflow file for this run

name: CI Tests
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest']
perl: [ '5.38', '5.36' ]
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Perl environment
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
distribution: ${{ ( startsWith( matrix.runner, 'windows-' ) && 'strawberry' ) || 'default' }}
- run: perl -V
- name: Install dependencies
run: |
cpanm --installdeps .
- name: Install
run: |
perl Makefile.PL
make install
- name: Run tests
run: prove -lrv t