MyHomeCollection/.drone.yml

16 lines
308 B
YAML
Raw Permalink Normal View History

2021-06-22 16:55:16 +02:00
kind: pipeline
name: default
steps:
- name: install
pull: if-not-exists
2021-06-22 16:55:16 +02:00
image: composer
commands:
- 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:
- vendor/bin/phpunit --configuration phpunit.xml