From 78d9edb91eb74bd55fcdcacbaaf62da206b428cc Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 9 Aug 2020 01:34:56 +0200 Subject: [PATCH] Add drone config --- .drone.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..950e0cb --- /dev/null +++ b/.drone.yml @@ -0,0 +1,24 @@ +--- +matrix: + include: + - IMAGE: 3.6-stretch + TOXENV: py36 + - IMAGE: 3.7-stretch + TOXENV: py37 + - IMAGE: 3.8-buster + TOXENV: py38 + - IMAGE: 3.8-buster + TOXENV: lint + - IMAGE: 3.8-buster + TOXENV: sort + - IMAGE: 3.8-buster + TOXENV: format + - IMAGE: 3.8-buster + TOXENV: type + +pipeline: + build: + image: python:${IMAGE} + commands: + - pip install tox + - tox -e ${TOXENV}