Files
Atomcms-edit/.gitlab-ci.yml
T
2026-05-23 19:05:37 +02:00

49 lines
1.0 KiB
YAML
Executable File

stages:
- validate
- test
variables:
COMPOSER_ALLOW_SUPERUSER: "1"
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- vendor/
- node_modules/
.php-base:
image: edgd1er/phpnt:8.4-laravel
before_script:
- apt-get update && apt-get install -y git unzip libpng-dev libjpeg-dev libfreetype6-dev 2>/dev/null || true
- docker-php-ext-install bcmath pdo_mysql gd 2>/dev/null || true
- cp .env.example .env || true
- composer install --prefer-dist --no-progress --no-interaction 2>&1
validate:phpstan:
stage: validate
extends: .php-base
script:
- vendor/bin/phpstan analyse --no-progress
allow_failure: false
validate:pint:
stage: validate
extends: .php-base
script:
- vendor/bin/pint --test
allow_failure: false
test:phpunit:
stage: test
extends: .php-base
script:
- php artisan key:generate --force
- vendor/bin/phpunit --log-junit junit.xml
artifacts:
reports:
junit: junit.xml
paths:
- junit.xml
when: always
allow_failure: false