From 208af6bfe4a8274db772c06e88ed3303a4d89022 Mon Sep 17 00:00:00 2001
From: Erick Hitter <git-contrib@ethitter.com>
Date: Sat, 11 Jun 2022 15:17:00 -0700
Subject: [PATCH] Add PHP 8.1

---
 plugins/templates/matrix.yml | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/plugins/templates/matrix.yml b/plugins/templates/matrix.yml
index 105c9f2..6240fae 100644
--- a/plugins/templates/matrix.yml
+++ b/plugins/templates/matrix.yml
@@ -60,11 +60,20 @@ PHPunit:PHP8.0:MySQL:
   script:
     - find . -type "f" -iname "*.php" | xargs -L "1" php -l
     - phpunit
+
+PHPunit:PHP8.1:MySQL:
+  stage: test
+  image: containers.ethitter.com:443/docker/images/php:8.1
+  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:7.3
+  image: containers.ethitter.com:443/docker/images/php:7.4
   before_script:
     - composer global require automattic/vipwpcs
     - composer global require phpcompatibility/phpcompatibility-wp
-- 
GitLab