From 684656de446c86766d7db9fd169e2732591befea Mon Sep 17 00:00:00 2001 From: Clement Desmidt Date: Wed, 30 Jun 2021 13:29:16 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Go=20from=20PHPCensor=20to=20Dro?= =?UTF-8?q?ne?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .drone.yml 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