Merge pull request #209 from oalders/dependabot/github_actions/action… #167
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: | |
- 'main' | |
pull_request: | |
branches: | |
- '*' | |
workflow_dispatch: | |
jobs: | |
build-job: | |
name: Build distribution | |
runs-on: ubuntu-latest | |
container: | |
image: perldocker/perl-tester:5.38 | |
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 | |
coverage-job: | |
needs: build-job | |
runs-on: ubuntu-latest | |
container: | |
image: perldocker/perl-tester:5.38 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
name: build_dir | |
path: . | |
- name: Install deps and test | |
run: cpan-install-dist-deps && test-dist | |
env: | |
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}} | |
test-linux-job: | |
needs: build-job | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
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' | |
- '5.38' | |
name: Perl ${{ matrix.perl-version }} on ${{ matrix.os }} | |
steps: | |
- name: Set Up Perl | |
uses: shogo82148/actions-setup-perl@v1 | |
with: | |
perl-version: ${{ matrix.perl-version }} | |
- uses: actions/[email protected] | |
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 | |
test-macos-job: | |
needs: build-job | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest] | |
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' | |
- '5.38' | |
name: Perl ${{ matrix.perl-version }} on ${{ matrix.os }} | |
steps: | |
- name: Set Up Perl | |
uses: shogo82148/actions-setup-perl@v1 | |
with: | |
perl-version: ${{ matrix.perl-version }} | |
- uses: actions/[email protected] | |
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 | |
test-windows-job: | |
needs: build-job | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest] | |
perl-version: | |
- '5.14' | |
- '5.16' | |
- '5.18' | |
- '5.20' | |
- '5.22' | |
- '5.24' | |
- '5.26' | |
- '5.28' | |
- '5.30' | |
- '5.32' | |
name: Perl ${{ matrix.perl-version }} on ${{ matrix.os }} | |
steps: | |
- name: Set Up Perl | |
uses: shogo82148/actions-setup-perl@v1 | |
with: | |
perl-version: ${{ matrix.perl-version }} | |
distribution: strawberry | |
- uses: actions/[email protected] | |
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 |