From 05e6b7eb6f8cc5a3f07bd145bcdde40714ef103e Mon Sep 17 00:00:00 2001 From: Ginger U Date: Mon, 20 Jun 2022 15:39:24 +0200 Subject: [PATCH] drone pipeline --- drone.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 drone.yml diff --git a/drone.yml b/drone.yml new file mode 100644 index 000000000..a90951305 --- /dev/null +++ b/drone.yml @@ -0,0 +1,24 @@ +--- +kind: pipeline +type: docker +name: default + +steps: +- name: test + image: hugotty/php8-fpm + commands: + - vendor/bin/simple-phpunit + +- name: install + image: hugotty/workspace + commands: + - composer install + +- name: code-analysis + image: aosapps/drone-sonar-plugin + settings: + sonar_host: + from_secret: host + sonar_token: + from_secret: token +