ldapsaisie/.gitlab-ci.yml
2023-01-02 00:45:20 +00:00

23 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