Michel Roux
83c92f7342
All checks were successful
continuous-integration/drone/push Build is passing
33 lines
600 B
YAML
33 lines
600 B
YAML
kind: pipeline
|
|
name: default
|
|
type: docker
|
|
|
|
steps:
|
|
- name: flake8
|
|
image: python
|
|
commands:
|
|
- pip install flake8
|
|
- flake8 pynyaata --ignore=E501
|
|
- name: docker
|
|
image: plugins/docker
|
|
settings:
|
|
repo: xefir/pynyaata
|
|
auto_tag: true
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
- name: pypi
|
|
image: plugins/pypi
|
|
settings:
|
|
username:
|
|
from_secret: pypi_username
|
|
password:
|
|
from_secret: pypi_password
|
|
when:
|
|
branch:
|
|
- master
|
|
event:
|
|
- push
|
|
|