toolshed/.build.yml
jedi 0b92db278b
All checks were successful
continuous-integration/drone/push Build is passing
add CI config
2023-06-16 20:21:44 +02:00

17 lines
324 B
YAML

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