16 lines
308 B
YAML
16 lines
308 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: install
|
|
pull: if-not-exists
|
|
image: composer
|
|
commands:
|
|
- cp .env.example .env
|
|
- composer install --ignore-platform-reqs --prefer-dist
|
|
- php artisan key:generate
|
|
|
|
- name: test
|
|
image: php:7
|
|
commands:
|
|
- vendor/bin/phpunit --configuration phpunit.xml |