]> git.p6c8.net - jirafeau.git/blobdiff - .gitlab-ci.yml
Merge branch 'fix_cs' into 'next-release'
[jirafeau.git] / .gitlab-ci.yml
index e7a62278195b71f97b637c909d6cb95dacb6be8a..fe75178a6273717977b520e91f80eefdb3b7a6e1 100644 (file)
@@ -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
@@ -22,7 +22,13 @@ job_lint_app_81:
     - php composer.phar install
   script: &linter_script
     - ./vendor/bin/parallel-lint --exclude vendor .
-    - ./vendor/bin/php-cs-fixer -vvv check . --using-cache=no --rules=@PSR12
+    - ./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:

patrick-canterino.de