mirror of
https://github.com/cmehay/pyentrypoint
synced 2024-10-30 15:21:11 +00:00
11 lines
193 B
Makefile
11 lines
193 B
Makefile
.PHONY: build test
|
|
|
|
build:
|
|
@docker-compose build
|
|
|
|
test: build
|
|
@docker-compose up --force-recreate testpython2 testpython3
|
|
|
|
publish:
|
|
@python setup.py register && python setup.py sdist upload
|