From 8dbfb3104ab70e7d43f36016b8ed35e3666ff18c Mon Sep 17 00:00:00 2001 From: Konrad Abicht Date: Wed, 28 Feb 2024 13:25:10 +0100 Subject: [PATCH] phpunit.yml: extend workflow to run for all major PHP versions (7.1 - 8.3) (#43) --- .github/workflows/phpunit.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index e2f2e5b..9f1ad3b 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -11,6 +11,9 @@ permissions: jobs: build: + strategy: + matrix: + php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] runs-on: ubuntu-latest