fix(deps): update dependency pytest to v8 #4294
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: test-perl | |
on: | |
push: | |
branches: | |
- main | |
- renovate/** | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test-perl: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
perl: [ "5.14", "5.20", "5.26", "5.32" ] | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Setup Perl environment | |
uses: shogo82148/actions-setup-perl@v1 | |
with: | |
perl-version: ${{ matrix.perl }} | |
working-directory: perl | |
- name: Run tests | |
working-directory: perl | |
run: make test | |
# Run author tests second so as to not 'contaminate' the environment | |
# with dependencies listed as author deps when they should have been | |
# listed as general deps | |
- name: Run author tests | |
working-directory: perl | |
run: make authortest |