From 8ee3615d3a83113bd86f15466b07f19d9c399226 Mon Sep 17 00:00:00 2001 From: Ekaropolus Date: Mon, 12 May 2025 12:29:19 -0600 Subject: [PATCH] Add basic Drone CI pipeline --- .drone.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..a9f4db9 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,15 @@ +kind: pipeline +type: docker +name: default + +steps: + - name: build and push image + image: python:3.10 + commands: + - pip install -r requirements.txt + - python manage.py check + - echo "✅ Build successful" + +trigger: + branch: + - main