stages: - tests tests:bullseye: image: name: brenard/ldapsaisie:bullseye 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-bullseye.xml artifacts: when: always paths: - tests-report-bullseye.xml reports: junit: tests-report-bullseye.xml tests:buster: image: name: brenard/ldapsaisie:buster 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-buster.xml artifacts: when: always paths: - tests-report-buster.xml reports: junit: tests-report-buster.xml tests:stretch: image: name: brenard/ldapsaisie:stretch entrypoint: [""] stage: tests rules: - changes: - src/* script: - cd /tmp/ - composer require overtrue/phplint --dev - cd - - rm -f .phplint-cache - /tmp/vendor/bin/phplint src tests:jessie: image: name: brenard/ldapsaisie:jessie entrypoint: [""] stage: tests rules: - changes: - src/* script: - cd /tmp/ - composer require overtrue/phplint --dev - cd - - rm -f .phplint-cache - /tmp/vendor/bin/phplint src