Compare commits

...

1 Commits

Author SHA1 Message Date
db8c441f8d
add initial .drone.yml
All checks were successful
continuous-integration/drone/push Build is passing
2021-06-15 18:45:45 +02:00
3 changed files with 30 additions and 0 deletions

14
.drone.yml Normal file
View File

@ -0,0 +1,14 @@
---
kind: pipeline
type: docker
name: default
steps:
- name: qa
image: python:3.8-alpine
commands:
- apk add --no-cache gcc g++ musl-dev python3-dev
- pip3 install pipenv
- pipenv install --dev
- pipenv run flake8
- pipenv run python -m unittest discover ki

View File

@ -1,5 +1,7 @@
# Kompetenzinventar Backend # Kompetenzinventar Backend
[![Build Status](https://drone.wtf-eg.de/api/badges/kompetenzinventar/ki-backend/status.svg?ref=refs/heads/main)](https://drone.wtf-eg.de/kompetenzinventar/ki-backend)
## Entwicklung ## Entwicklung
### Abhängigkeiten ### Abhängigkeiten

14
drone.yml Normal file
View File

@ -0,0 +1,14 @@
---
kind: pipeline
type: docker
name: default
steps:
- name: qa
image: python3.8-alpine
commands:
- apk add --no-cache gcc g++ musl-dev python3-dev
- pip3 install pipenv
- pipenv install --system
- flake8
- python -m unittest discover ki