feat(Kalaclista::Data::Entry): add new class to entry data #58
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Tests for p5-Kalaclista | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/perl-test.yml" | |
- "cpanfile" | |
- "lib/**" | |
- "t/**" | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
# runner environment | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
# perl environment | |
- uses: shogo82148/actions-setup-perl@28eae78d12c2bba1163aec45d123f6d9228bc307 # v1.29.0 | |
with: | |
perl-version: '5.38' | |
install-modules-with: cpm | |
install-modules-args: '-L extlib' | |
# testing | |
- name: Run tests | |
run: | | |
prove -Iextlib/lib/perl5 -Ilib -It/lib -vr t/ |