From 025f2fb3a6997eef552409ab6a5008efafcd464b Mon Sep 17 00:00:00 2001 From: KKlochko Date: Mon, 8 May 2023 12:49:09 +0300 Subject: [PATCH] Added drone config file. --- .drone.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .drone.yaml diff --git a/.drone.yaml b/.drone.yaml new file mode 100644 index 0000000..adab4bb --- /dev/null +++ b/.drone.yaml @@ -0,0 +1,14 @@ +kind: pipeline +type: docker +name: default + +steps: + - name: install dependencies + image: composer:2.5.5 + commands: + - composer install + + - name: run tests + image: composer:2.5.5 + commands: + - vendor/bin/phpunit