From 0c46d3ed18063ad1a106128d67a6fbf9d49f11c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Capelle?= Date: Tue, 3 Dec 2024 13:38:03 +0000 Subject: [PATCH] Add .drone.yml for CI. (#2) --- .drone.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..006a7b7 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,12 @@ +--- +kind: pipeline +type: docker +name: default + +steps: + - name: tests + image: python:3.10-slim + commands: + - pip install poetry + - poetry install + - poetry run poe lint