Skip to content

GitHub Actions: experiment with reusable multiperl-test #71

GitHub Actions: experiment with reusable multiperl-test

GitHub Actions: experiment with reusable multiperl-test #71

Workflow file for this run

name: "multiperl test"
on:
workflow_dispatch: ~
push:
branches: "*"
tags-ignore: "*"
pull_request: ~
jobs:
build-tarball:
runs-on: ubuntu-latest
outputs:
perl-versions: ${{ steps.build-archive.outputs.perl-versions }}
steps:
- name: Build archive
id: build-archive
uses: rjbs/dzil-build@v0
multiperl-test:
needs: build-tarball
uses: rjbs/test-perl-dist/.github/workflows/multiperl-test-matrix.yaml@v0

Check failure on line 21 in .github/workflows/multiperl-test.yml

View workflow run for this annotation

GitHub Actions / multiperl test

Invalid workflow file

The workflow is not valid. .github/workflows/multiperl-test.yml (Line: 21, Col: 11): Input perl-versions-json is required, but not provided while calling. .github/workflows/multiperl-test.yml (Line: 23, Col: 26): Invalid input, perl-version-json is not defined in the referenced workflow.
with:
perl-version-json: ${{ needs.build-tarball.outputs.perl-versions }}