Add basic Drone CI pipeline
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
Ekaropolus 2025-05-12 12:29:19 -06:00
parent 8727400e4c
commit 8ee3615d3a

15
.drone.yml Normal file
View File

@ -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