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 +