chore(github-actions): bump actions/checkout from 4.2.1 to 4.2.2 #134
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install ubuntu dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
libidn-dev | |
# perl environment | |
- uses: shogo82148/actions-setup-perl@9c1eca9952ccc07f9ca4a2097b63df93d9d138e9 # v1.31.3 | |
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/ |