Skip to content

Standardise CPAN Actions #16

Standardise CPAN Actions

Standardise CPAN Actions #16

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
<<<<<<< Updated upstream

Check failure on line 11 in .github/workflows/perltest.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/perltest.yml

Invalid workflow file

You have an error in your yaml syntax on line 11
build:
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 --installdeps .
- run: prove -lv t
=======
test:
uses: PerlToolsTeam/github_workflows/.github/workflows/cpan-test.yml@main
with:
os: "[ 'ubuntu-latest', 'macos-latest' ]"
perl_version: "[ 'latest' ]"
coverage:
uses: PerlToolsTeam/github_workflows/.github/workflows/cpan-coverage.yml@main
perlcritic:
uses: PerlToolsTeam/github_workflows/.github/workflows/cpan-perlcritic.yml@main
complexity:
uses: PerlToolsTeam/github_workflows/.github/workflows/cpan-complexity.yml@main
>>>>>>> Stashed changes