2021-06-22 16:55:16 +02:00
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: install
|
|
|
|
image: composer
|
|
|
|
commands:
|
2021-06-22 17:13:58 +02:00
|
|
|
- composer install --ignore-platform-reqs
|
2021-06-22 16:55:16 +02:00
|
|
|
|
|
|
|
- name: test
|
|
|
|
image: php:7
|
|
|
|
commands:
|
2021-06-22 17:18:08 +02:00
|
|
|
- vendor/bin/phpunit --configuration phpunit.xml
|