2021-06-22 16:55:16 +02:00
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: install
|
2021-06-22 17:35:33 +02:00
|
|
|
pull: if-not-exists
|
2021-06-22 16:55:16 +02:00
|
|
|
image: composer
|
|
|
|
commands:
|
2021-06-22 17:35:33 +02:00
|
|
|
- cp .env.example .env
|
|
|
|
- composer install --ignore-platform-reqs --prefer-dist
|
|
|
|
- php artisan key:generate
|
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
|