Skip to content

Remove d_o and d_e, unlike in kappa, they have no meaning #8

Remove d_o and d_e, unlike in kappa, they have no meaning

Remove d_o and d_e, unlike in kappa, they have no meaning #8

Workflow file for this run

name: CI
on:
push:
branches: '*'
pull_request:
branches: '*'
jobs:
matrix-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
perl-version:
- "5.26.0"
- "5.34.0"
- "5.40.1"
name: Perl ${{ matrix.perl-version }}
steps:
- uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl-version }}
- uses: actions/checkout@v4
- name: Regular tests
run: |
cpanm --installdeps --notest .
perl Makefile.PL
make
make test
author-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
perl-version:
- 'latest'
container:
image: perldocker/perl-tester:${{ matrix.perl-version }} # https://hub.docker.com/r/perldocker/perl-tester
name: Author ${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v4
- name: Prove with author tests
run: |
cpanm --installdeps .
prove -vl xt t