Skip to content
Extraits de code Groupes Projets
Valider c7c08828 rédigé par marcimat's avatar marcimat
Parcourir les fichiers

ci: Ajout de CI

parent 38fcc73d
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Pipeline #631 en échec
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
\ No newline at end of file
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.gitlab-ci.yml
/ecs.php export-ignore
stages:
- build
- check
- test
image: php:latest
cache:
paths:
- vendor/
before_script:
# Install git
- apt update -yqq
- apt install git libzip-dev -yqq
- docker-php-ext-install zip
# Install composer
- curl -sS https://getcomposer.org/installer | php
# Install all project dependencies
- php composer.phar install
job:build:
stage: build
only:
- main
- merge_requests
script:
- echo "Build done."
job:check:php:
stage: check
when: on_success
only:
- main
- merge_requests
before_script:
- curl -o /usr/local/bin/parallel-lint -fsL https://github.com/php-parallel-lint/PHP-Parallel-Lint/releases/latest/download/parallel-lint.phar
script:
# Vérifier rapidement les fichiers
- php /usr/local/bin/parallel-lint --exclude .git --exclude vendor .
# Auditer
- php composer.phar audit
job:test:ecs:
stage: test
when: on_success
only:
- main
- merge_requests
script:
- php -d display_errors=0 vendor/bin/ecs check --output-format=gitlab > ecs-quality-report.json
artifacts:
paths:
- ecs-quality-report.json
reports:
codequality: ecs-quality-report.json
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter