diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..2b00e25 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,15 @@ +kind: pipeline +name: default + +steps: + - name: install + pull: if-not-exists + image: composer + commands: + - composer install --ignore-platform-reqs + - name: test + image: php:7 + commands: + - vendor/bin/phpmd + - vendor/bin/phpcs --standard=PSR2 + - vendor/bin/phpcpd \ No newline at end of file