From 91164f051946f27fcc103824d405c33a4e21d5e7 Mon Sep 17 00:00:00 2001 From: Quentin Ferrand Date: Tue, 19 Apr 2022 10:18:59 +0200 Subject: [PATCH] add drone pipeline --- .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..4fbbfba --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +--- +kind: pipeline +type: kubernetes +name: python + +steps: +- name: test + image: python:latest + commands: + - pip install --upgrade pip black flake8 mypy pylint + - flake8 --ignore=E501,W503,E265 + - mypy --ignore-missing-imports + - pylint