Divent/.drone.yml

23 lines
418 B
YAML
Raw Normal View History

2022-05-08 14:02:19 +00:00
kind: pipeline
name: default
type: docker
steps:
2022-05-08 14:13:53 +00:00
- name: lint
2022-05-08 14:19:25 +00:00
image: python:3.8-slim
2022-05-08 14:02:19 +00:00
commands:
- pip install poetry
- poetry install
2022-05-08 14:13:53 +00:00
- poetry run flake8
- poetry run mypy .
2022-05-08 14:02:19 +00:00
- name: docker
image: plugins/docker
settings:
repo: xefir/divent
auto_tag: true
username:
from_secret: docker_username
password:
from_secret: docker_password