Using Scalar::Util::reftype instead of just ref(), but mindful this time about definedness to avoid warnings #233
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: dzil build and test | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
workflow_dispatch: | |
jobs: | |
build-job: | |
name: Build distribution | |
runs-on: ubuntu-20.04 | |
container: | |
image: perldocker/perl-tester:5.34 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Tests | |
env: | |
AUTHOR_TESTING: 1 | |
AUTOMATED_TESTING: 1 | |
EXTENDED_TESTING: 1 | |
RELEASE_TESTING: 1 | |
run: auto-build-and-test-dist | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: build_dir | |
path: build_dir | |
if: ${{ github.actor != 'nektos/act' }} | |
coverage-job: | |
needs: build-job | |
runs-on: ubuntu-20.04 | |
container: | |
image: perldocker/perl-tester:5.34 | |
steps: | |
- uses: actions/checkout@v4 # codecov wants to be inside a Git repository | |
- uses: actions/download-artifact@v4 | |
with: | |
name: build_dir | |
path: . | |
- name: Install deps and test | |
run: cpan-install-dist-deps && test-dist | |
env: | |
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}} | |
test-job: | |
needs: build-job | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
distribution: [default, strawberry] | |
perl-version: | |
- "5.8" | |
- "5.10" | |
- "5.12" | |
- "5.14" | |
- "5.16" | |
- "5.18" | |
- "5.20" | |
- "5.22" | |
- "5.24" | |
- "5.26" | |
- "5.28" | |
- "5.30" | |
- "5.32" | |
- "5.34" | |
- "5.36" | |
exclude: | |
- { os: windows-latest, distribution: default } | |
- { os: macos-latest, distribution: strawberry } | |
- { os: ubuntu-latest, distribution: strawberry } | |
- { distribution: strawberry, perl-version: "5.8" } | |
- { distribution: strawberry, perl-version: "5.10" } | |
- { distribution: strawberry, perl-version: "5.12" } | |
- { distribution: strawberry, perl-version: "5.34" } | |
- { distribution: strawberry, perl-version: "5.36" } | |
runs-on: ${{ matrix.os }} | |
name: on ${{ matrix.os }} perl ${{ matrix.perl-version }} | |
steps: | |
- name: set up perl | |
uses: shogo82148/actions-setup-perl@v1 | |
with: | |
perl-version: ${{ matrix.perl-version }} | |
distribution: ${{ matrix.distribution }} | |
- uses: actions/download-artifact@v4 | |
with: | |
name: build_dir | |
path: . | |
- name: install deps using cpm | |
uses: perl-actions/install-with-cpm@v1 | |
with: | |
cpanfile: "cpanfile" | |
args: "--with-suggests --with-recommends --with-test" | |
- run: prove -lr t | |
env: | |
AUTHOR_TESTING: 0 | |
RELEASE_TESTING: 0 |