Adding first .drone.yml draft with simple composer build and console run.
This commit is contained in:
parent
f3cd8cfc00
commit
6f6bd4e34f
16
.drone.yml
Normal file
16
.drone.yml
Normal file
|
@ -0,0 +1,16 @@
|
|||
kind: pipeline
|
||||
type: docker
|
||||
name: build-app
|
||||
|
||||
steps:
|
||||
- name: build-deps
|
||||
image: 'composer:2.3'
|
||||
environment:
|
||||
APP_ENV: dev
|
||||
commands:
|
||||
- composer install --no-progress --no-interaction --optimize-autoloader
|
||||
- bin/console about
|
||||
- 'bin/console lint:container'
|
||||
- 'bin/console lint:twig'
|
||||
- 'bin/console lint:container'
|
||||
- 'bin/console lint:yaml'
|
Loading…
Reference in a new issue