morss/.drone.yml

16 lines
307 B
YAML
Raw Normal View History

2021-09-08 19:24:50 +00:00
kind: pipeline
name: default
steps:
- name: isort
2021-09-08 19:24:50 +00:00
image: python:alpine
commands:
- pip install isort
2021-09-08 19:31:42 +00:00
- isort --check-only --diff .
- name: pylint
image: python:alpine
commands:
- apk add --no-cache py3-lxml
- pip install .
- pylint morss --rcfile=.pylintrc --disable=C,R,W --fail-under=8