From 6f6bd4e34f87684ca95c9b645501ee0f0159b5f8 Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Mon, 11 Jul 2022 02:07:13 +0300 Subject: [PATCH] Adding first .drone.yml draft with simple composer build and console run. --- .drone.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..49f054f --- /dev/null +++ b/.drone.yml @@ -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'