21 lines
367 B
YAML
21 lines
367 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: install
|
|
image: composer
|
|
commands:
|
|
- composer install
|
|
|
|
- name: test
|
|
image: php:7
|
|
commands:
|
|
- vendor/bin/phpunit --configuration phpunit.xml
|
|
|
|
- name: Discord notification
|
|
image: appleboy/drone-discord
|
|
settings:
|
|
webhook_id:
|
|
from_secret: webhook_id
|
|
webhook_token:
|
|
from_secret: webhook_token |