Update action version #17
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ['ubuntu-latest', 'macos-latest'] | |
perl: [ 'latest' ] | |
name: Perl ${{ matrix.perl }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up perl | |
uses: shogo82148/actions-setup-perl@v1 | |
with: | |
perl-version: ${{ matrix.perl }} | |
- run: perl -V | |
- run: cpanm Module::Install | |
- run: cpanm -n --installdeps . | |
- run: prove -lv t | |
coverage: | |
runs-on: ubuntu-latest | |
container: davorg/perl-coveralls:latest | |
name: Test coverage | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install modules Module::Install | |
run: cpanm Module::Install | |
- name: Install dependencies | |
run: cpanm -n --installdeps . | |
- name: Coverage | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: cover -test -report Coveralls | |
perlcritic: | |
uses: PerlToolsTeam/github_workflows/.github/workflows/cpan-perlcritic.yml@main | |
complexity: | |
uses: PerlToolsTeam/github_workflows/.github/workflows/cpan-complexity.yml@main | |