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