bytetrie/.drone.yml

24 lines
476 B
YAML
Raw Normal View History

2020-10-10 00:40:52 +00:00
kind: pipeline
type: docker
name: default
steps:
- name: validate
image: python:3
commands:
2020-10-10 11:44:06 +00:00
- pip install mypy pytest
- mypy bytetrie/*.py
2020-10-10 11:44:06 +00:00
- python -m pytest
2020-10-10 00:40:52 +00:00
- name: publish
image: python:3
environment:
TWINE_USERNAME: __token__
TWINE_PASSWORD:
from_secret: pypi_test_token
commands:
- pip install twine setuptools wheel
- python setup.py sdist bdist_wheel
- twine check dist/*
- twine upload --repository testpypi dist/*