From a760c34e6b2b4484575788ed0728033b13fc9736 Mon Sep 17 00:00:00 2001 From: Erick Hitter <git-contrib@ethitter.com> Date: Thu, 15 May 2025 19:39:48 -0700 Subject: [PATCH] Add PHP 8.4, make 8.1 and 8.2 required --- plugins/templates/matrix.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/plugins/templates/matrix.yml b/plugins/templates/matrix.yml index 4e7703b..a101f74 100644 --- a/plugins/templates/matrix.yml +++ b/plugins/templates/matrix.yml @@ -64,7 +64,6 @@ PHPunit:PHP8.1:MySQL: script: - find . -type "f" -iname "*.php" | xargs -L "1" php -l - phpunit - allow_failure: true PHPunit:PHP8.2:MySQL: stage: test @@ -74,7 +73,6 @@ PHPunit:PHP8.2:MySQL: script: - find . -type "f" -iname "*.php" | xargs -L "1" php -l - phpunit - allow_failure: true PHPunit:PHP8.3:MySQL: stage: test @@ -86,6 +84,16 @@ PHPunit:PHP8.3:MySQL: - phpunit allow_failure: true +PHPunit:PHP8.4:MySQL: + stage: test + image: containers.ethitter.com:443/docker/images/php:8.4 + services: + - mysql:5.6 + script: + - find . -type "f" -iname "*.php" | xargs -L "1" php -l + - phpunit + allow_failure: true + PHPCS: stage: test image: containers.ethitter.com:443/docker/images/php:8.2 -- GitLab