From: Patrick Canterino <patrick@patrick-canterino.de>
Date: Mon, 14 Oct 2024 17:28:35 +0000 (+0200)
Subject: Added pipeline for PHP 8.2
X-Git-Tag: 4.6.1~12^2
X-Git-Url: https://git.p6c8.net/jirafeau_project.git/commitdiff_plain/9d1f580b9e6168927debdf0a072377532cf5463f?hp=-c

Added pipeline for PHP 8.2
---

9d1f580b9e6168927debdf0a072377532cf5463f
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a3e6a0d..fe75178 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,9 +3,9 @@ cache:
   paths:
     - vendor/
 
-# Run tests for php:8.1
-job_lint_app_81:
-  image: php:8.1
+# Run tests for php:8.2
+job_lint_app_82:
+  image: php:8.2
   before_script: &before_linter_script
     # Install git, the docker php image doesn't have it installed by default
     - apt-get update -yqq
@@ -24,6 +24,12 @@ job_lint_app_81:
     - ./vendor/bin/parallel-lint --exclude vendor .
     - ./vendor/bin/php-cs-fixer -vvv check . --using-cache=no --rules=@PSR12,-single_space_around_construct
 
+# Run tests for php:8.1
+job_lint_app_81:
+  image: php:8.1
+  before_script: *before_linter_script
+  script: *linter_script
+
 # Run tests for php:7.4
 job_lint_app_74:
   image: php:7.4