From 65bc29a99a52fb6a8b300e178ba081100a18d604 Mon Sep 17 00:00:00 2001 From: nightly Date: Wed, 21 Sep 2022 21:41:23 +0200 Subject: [PATCH] Make a drone.yml file --- .drone.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..8dc9c53 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +kind: pipeline +name: default + +steps: +- name: install + image: composer + commands: + - composer install + +- name: test + image: php:7 + commands: + - vendor/bin/phpunit --configuration phpunit.xml \ No newline at end of file