Execute `composer validate` via GitLab CI

This commit is contained in:
Krzysztof Sikorski 2024-03-05 22:52:58 +01:00
parent 1a6b1edd26
commit f1d69e051f
Signed by: krzysztof-sikorski
GPG Key ID: 4EB564BD08FE8476
1 changed files with 19 additions and 0 deletions

19
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,19 @@
image: php:8.3
before_script:
- curl -sS https://getcomposer.org/installer | php
lint-composer-validate:
image: php:8.3
parallel:
matrix:
- WORKING_DIR:
- modules/core
- modules/storage
- website
script:
- >
php composer.phar validate
--working-dir="$WORKING_DIR"
--strict
--no-check-version