-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid running macOS and Windows workflow.
- Loading branch information
1 parent
1801372
commit 6724a30
Showing
4 changed files
with
80 additions
and
129 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
name: testsuite | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
tags-ignore: | ||
- '*' | ||
pull_request: | ||
|
||
jobs: | ||
|
||
# a cheap and easy job to avoid checking all Perl versions | ||
ubuntu: | ||
env: | ||
PERL_USE_UNSAFE_INC: 0 | ||
AUTHOR_TESTING: 1 | ||
AUTOMATED_TESTING: 1 | ||
RELEASE_TESTING: 1 | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: perl -V | ||
- name: install dependencies | ||
uses: perl-actions/install-with-cpm@v1.8 | ||
with: | ||
install: | | ||
Carp | ||
Module::Build | ||
Scalar::Util | ||
SUPER | ||
Test::More | ||
Test::Warnings | ||
- run: perl Build.PL | ||
- run: ./Build | ||
- run: ./Build test | ||
|
||
perl: | ||
env: | ||
# some plugins still needs this to run their tests... | ||
PERL_USE_UNSAFE_INC: 0 | ||
AUTHOR_TESTING: 1 | ||
AUTOMATED_TESTING: 1 | ||
RELEASE_TESTING: 1 | ||
|
||
runs-on: ubuntu-latest | ||
|
||
needs: [ubuntu] | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
perl-version: | ||
- '5.38' | ||
- '5.36' | ||
- '5.34' | ||
- '5.32' | ||
- '5.30' | ||
- '5.28' | ||
- '5.26' | ||
- '5.24' | ||
- '5.22' | ||
- '5.20' | ||
- '5.18' | ||
- '5.16' | ||
- '5.14' | ||
- '5.12' | ||
- '5.10' | ||
|
||
container: | ||
image: perldocker/perl-tester:${{ matrix.perl-version }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: perl -V | ||
- run: perl Build.PL | ||
- run: ./Build | ||
- run: ./Build test |
This file was deleted.
Oops, something went wrong.