use test-perl-dist action #50
Workflow file for this run
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: "multiperl test" | ||
on: | ||
push: | ||
branches: "*" | ||
tags-ignore: "*" | ||
pull_request: ~ | ||
# FUTURE ENHANCEMENT(s): | ||
# * install faster (see below) | ||
# * use github.event.repository.name or ${GITHUB_REPOSITORY#*/} as the | ||
# tarball/build name instead of Dist-To-Test | ||
jobs: | ||
build-tarball: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
steps: | ||
- name: Build archive | ||
uses: rjbs/dzil-build@main | ||
multiperl-test: | ||
needs: build-tarball | ||
steps: | ||
- name: Multi-platform testing | ||
uses: rjbs/test-perl-dist@main |