bytetrie/.drone.yml
Armin Friedl 92077efb43
All checks were successful
continuous-integration/drone/push Build is passing
Add drone build, polish README
2020-10-10 03:03:57 +02:00

22 lines
453 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: validate
image: python:3
commands:
- pip install mypy
- mypy bytetrie/bytetrie.py
- 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/*