Skip to content

Add option unicode

Add option unicode #54

Workflow file for this run

name: linux
on:
push:
branches: [ '*' ]
pull_request:
branches: [ master ]
jobs:
perl:
runs-on: ubuntu-latest
strategy:
matrix:
perl-version:
- '5.8'
- '5.10'
- '5.12'
- '5.14'
- '5.16'
- '5.18'
- '5.20'
- '5.22'
- '5.24'
- '5.26'
- '5.28'
- '5.30'
- '5.32'
container:
image: perl:${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v3
- run: env
- run: perl -V
- name: Install deps
run: >
cpanm --quiet --notest
Test::More YAML::PP
- name: Run Tests
run: |
perl Makefile.PL
make
prove -br t