Standardise CPAN Actions

This commit is contained in:
Dave Cross 2024-01-22 20:31:28 +00:00
parent eaca7b7c4d
commit 9e62d29643

View file

@ -1,9 +1,5 @@
# This is a basic workflow to help you get started with Actions
name: CI name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on: on:
push: push:
branches: [ master ] branches: [ master ]
@ -11,21 +7,15 @@ on:
branches: [ master ] branches: [ master ]
workflow_dispatch: workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs: jobs:
build: build:
runs-on: ${{ matrix.os }} uses: PerlToolsTeam/github_workflows/.github/workflows/cpan-test.yml@main
strategy:
matrix: coverage:
os: [ 'ubuntu-latest', 'macos-latest' ] uses: PerlToolsTeam/github_workflows/.github/workflows/cpan-coverage.yml@main
perl: [ 'latest' ]
name: Perl ${{ matrix.perl }} on ${{ matrix.os }} perlcritic:
steps: uses: PerlToolsTeam/github_workflows/.github/workflows/cpan-perlcritic.yml@main
- uses: actions/checkout@v4
- name: Set up perl complexity:
uses: shogo82148/actions-setup-perl@v1 uses: PerlToolsTeam/github_workflows/.github/workflows/cpan-complexity.yml@main
with:
perl-version: ${{ matrix.perl }}
- run: perl -V
- run: cpanm --installdeps .
- run: prove -lv t