mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-17 15:59:06 +01:00
18 lines
360 B
YAML
18 lines
360 B
YAML
stages:
|
|
- tests
|
|
|
|
tests:
|
|
image: composer
|
|
stage: tests
|
|
rules:
|
|
- changes:
|
|
- src/*
|
|
script:
|
|
- composer install
|
|
- ./vendor/bin/phpstan analyse --no-interaction --configuration=phpstan.neon --error-format=junit > tests-report.xml
|
|
artifacts:
|
|
when: always
|
|
paths:
|
|
- tests-report.xml
|
|
reports:
|
|
junit: tests-report.xml
|