summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Renz <crenz@web42.com>2022-07-30 23:58:56 +0800
committerGitHub <noreply@github.com>2022-07-30 23:58:56 +0800
commitf7668b39b2412ab8e167bdb087020f426add6d54 (patch)
tree3b112edd977f789c95da44eeaf5a57e083b71ece
parent512a8cb7b625569990cd07193dd24acad1833e75 (diff)
Update auto-run-tests-matrix.yml
-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