diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..c89d85c --- /dev/null +++ b/.drone.yml @@ -0,0 +1,10 @@ +workspace: + base: /app + path: . + +pipeline: + build: + image: python:3 + commands: + - make test + - make build diff --git a/Makefile b/Makefile index b41edb2..1a59de7 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ test: env ./env/bin/tox .PHONY: build -build: test +build: env ./env/bin/python setup.py sdist ./env/bin/python setup.py bdist_wheel