Compare commits

...

2 commits

Author SHA1 Message Date
990bd8adaa -
Some checks failed
continuous-integration/drone/push Build is failing
2022-04-19 10:59:20 +02:00
1b5f88bd14 add drone pipeline 2022-04-19 10:43:04 +02:00

13
.drone.yml Normal file
View file

@ -0,0 +1,13 @@
---
kind: pipeline
type: kubernetes
name: python
steps:
- name: test
image: python:latest
commands:
- pip install --upgrade pip black flake8 mypy pylint
- flake8 --ignore=E501,W503,E265
- mypy --ignore-missing-imports .
- pylint