summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/auto-run-tests-matrix.yml9
1 files changed, 3 insertions, 6 deletions
diff --git a/.github/workflows/auto-run-tests-matrix.yml b/.github/workflows/auto-run-tests-matrix.yml
index 246774e..426bdfd 100644
--- a/.github/workflows/auto-run-tests-matrix.yml
+++ b/.github/workflows/auto-run-tests-matrix.yml
@@ -1,11 +1,8 @@
-name: Automatically run tests (matrixed)
+name: Run tests on master (matrixed)
on:
- # Triggers the workflow on push or pull request events but only for the "master" branch
push:
- branches: [ "**" ]
- pull_request:
- branches: [ "**" ]
+ branches: [ "master" ]
workflow_dispatch:
@@ -15,7 +12,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
- perl: [ '5', '5.32' ]
+ perl: [ '5', '5.32', '5.8.1' ]
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3