update Drone CI configuration

This commit is contained in:
Stefan Kalscheuer 2019-08-27 20:12:27 +02:00
parent b923d3494b
commit 8acd840fc5

View File

@ -1,24 +1,16 @@
kind: pipeline kind: pipeline
name: default name: default
clone:
disable: true
steps: steps:
- name: clone - name: pre-build
image: plugins/git image: composer
settings: commands:
depth: 10 - composer install
skip_verify: true - name: test
- name: pre-build image: composer
image: composer commands:
commands: - composer test
- composer install - name: lint
- name: test image: composer
image: composer commands:
commands: - composer lint-php
- ./vendor/bin/robo test
- name: test-style
image: composer
commands:
- ./vendor/bin/robo test:cs