add CI config
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
j3d1 2023-06-16 17:30:12 +02:00
parent 3cd89b7162
commit 0b92db278b
4 changed files with 114 additions and 1 deletions

17
.build.yml Normal file
View file

@ -0,0 +1,17 @@
kind: pipeline
type: docker
name: default
image:
tasks:
-
steps:
- name: backend
image: python:alpine
commands:
- cd backend
- apk add --no-cache gcc musl-dev python3-dev
- pip install --upgrade pip && pip install -r requirements.txt
- python3 configure.py
- coverage run manage.py test
- coverage report