morss/.drone.yml

57 lines
843 B
YAML

kind: pipeline
name: test
steps:
- name: lint
image: alpine
commands:
- apk add --no-cache python3 py3-lxml py3-pip py3-wheel py3-enchant hunspell-en
- pip3 install --no-cache-dir .[full] .[dev]
- isort --check-only --diff .
- pylint morss --rcfile=.pylintrc --disable=C,R,W --fail-under=8
---
kind: pipeline
name: python
- name: publish
image: plugins/pypi
settings:
username:
from_secret: pypi_user
password:
from_secret: pypi_pwd
trigger:
branch:
- master
event:
- push
depends_on:
- test
---
kind: pipeline
name: docker
- name: publish
image: plugins/docker
settings:
username:
from_secret: docker_user
password:
from_secret: docker_pwd
repo:
from_secret: docker_repo
tags: latest
trigger:
branch:
- master
event:
- push
depends_on:
- test