From a5ed3f267dc36427fb225dd4238e8a8f45c3a1bb Mon Sep 17 00:00:00 2001 From: Michael Weimann Date: Tue, 15 Jun 2021 18:31:39 +0200 Subject: [PATCH] add initial drone.yml --- drone.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 drone.yml diff --git a/drone.yml b/drone.yml new file mode 100644 index 0000000..bf9988c --- /dev/null +++ b/drone.yml @@ -0,0 +1,14 @@ +--- +kind: pipeline +type: docker +name: default + +steps: +- name: qa + image: python3.8-alpine + commands: + - apk add --no-cache gcc g++ musl-dev python3-dev + - pip3 install pipenv + - pipenv install --system + - flake8 + - python -m unittest discover ki