2021-09-08 19:24:50 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
2021-12-05 15:25:49 +00:00
|
|
|
- name: lint
|
2021-09-08 20:07:21 +00:00
|
|
|
image: alpine
|
2021-09-08 20:01:49 +00:00
|
|
|
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]
|
2021-12-05 15:29:08 +00:00
|
|
|
- isort --check-only --diff .
|
2021-09-08 20:01:49 +00:00
|
|
|
- pylint morss --rcfile=.pylintrc --disable=C,R,W --fail-under=8
|
2021-12-05 15:26:53 +00:00
|
|
|
|
2021-12-05 15:30:59 +00:00
|
|
|
- name: pypi
|
2021-12-05 15:26:53 +00:00
|
|
|
image: plugins/pypi
|
|
|
|
settings:
|
|
|
|
username:
|
2021-12-05 15:30:59 +00:00
|
|
|
from_secret: pypi_user
|
2021-12-05 15:26:53 +00:00
|
|
|
password:
|
2021-12-05 15:30:59 +00:00
|
|
|
from_secret: pypi_pwd
|
2021-12-05 15:26:53 +00:00
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- push
|