mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-17 15:59:06 +01:00
22 lines
440 B
YAML
22 lines
440 B
YAML
stages:
|
|
- tests
|
|
|
|
tests:
|
|
image:
|
|
name: brenard/ldapsaisie:dev
|
|
entrypoint: [""]
|
|
|
|
stage: tests
|
|
rules:
|
|
- changes:
|
|
- src/*
|
|
script:
|
|
- composer install
|
|
- service slapd start
|
|
- ./vendor/bin/phpstan analyse --no-interaction --configuration=.phpstan/config.neon --error-format=junit > tests-report.xml
|
|
artifacts:
|
|
when: always
|
|
paths:
|
|
- tests-report.xml
|
|
reports:
|
|
junit: tests-report.xml
|