tenkan/.drone.yml
Quentin Ferrand 391be4387f
Some checks failed
continuous-integration/drone/push Build is failing
-
2022-04-19 11:05:07 +02:00

13 lines
244 B
YAML

---
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 .