add initial drone.yml

This commit is contained in:
weeman 2021-06-15 18:31:39 +02:00
parent 0b7baef5e1
commit a5ed3f267d
Signed by: weeman
GPG Key ID: 34F0524D4DA694A1

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