Skip to content

Add support for prompts #27

Add support for prompts

Add support for prompts #27

Workflow file for this run

name: linux
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
jobs:
perl:
runs-on: ubuntu-latest
strategy:
matrix:
codename:
- buster
perl-version:
- '5.20'
- '5.30'
- '5.40'
container:
image: perl:${{ matrix.perl-version }}-${{ matrix.codename }}
steps:
- uses: actions/checkout@v2
- name: perl -V
run: perl -V
- name: Install dependencies
run: |
cpanm -n --installdeps .
- name: Run tests
run: prove -l t
env:
TEST_STDIO: 1
TEST_POD: 1