From b1fc84abab586f901f456aa2d85332953148a5a8 Mon Sep 17 00:00:00 2001 From: Shikiryu Date: Tue, 22 Jun 2021 16:55:16 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Ajoute=20la=20CI=20par=20Drone?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .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..ee398aa --- /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 config.xml \ No newline at end of file