From 908444cb9d71ad5b2bd99bf6a6765426883f9d0e Mon Sep 17 00:00:00 2001 From: Pavel Lutskov Date: Fri, 2 Apr 2021 19:20:27 +0200 Subject: [PATCH] Start adding CI/CD --- .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..46ed050 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,14 @@ +kind: pipeline +type: docker +name: test + +steps: + - name: test-python-3.8 + image: python:3.8-slim + commands: + - python test.py + + - name: test-python-3.9 + image: python:3.9-slim + commands: + - python test.py