ldapsaisie/.gitlab-ci.yml

23 lines
440 B
YAML
Raw Normal View History

stages:
- tests
tests:
image:
name: brenard/ldapsaisie:dev
2023-01-02 01:45:20 +01:00
entrypoint: [""]
2023-01-02 01:38:47 +01:00
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