morss/.drone.yml

16 lines
379 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: 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-04 13:26:40 +00:00
- pip3 install --no-cache-dir .[full] .[dev]
- pylint morss --rcfile=.pylintrc --disable=C,R,W --fail-under=8