morss/.drone.yml

25 lines
494 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
2021-12-05 15:26:53 +00:00
- name: pypy
image: plugins/pypi
settings:
username:
from_secret: pypy_user
password:
from_secret: pypy_pwd
when:
branch:
- master
event:
- push