morss/.drone.yml

12 lines
306 B
YAML
Raw Normal View History

2021-09-08 19:24:50 +00:00
kind: pipeline
name: default
steps:
2021-12-05 15:25:49 +00:00
- name: lint
image: alpine
commands:
2021-12-04 11:01:10 +00:00
- apk add --no-cache python3 py3-lxml py3-pip py3-wheel py3-enchant hunspell-en
2021-12-05 15:25:49 +00:00
- isort --check-only --diff .
2021-12-04 13:26:40 +00:00
- pip3 install --no-cache-dir .[full] .[dev]
- pylint morss --rcfile=.pylintrc --disable=C,R,W --fail-under=8