Create Makefile

This commit is contained in:
Ricardo Band 2023-10-16 18:53:00 +02:00 committed by GitHub
parent d303a5cd5c
commit e7f96cba6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

13
Makefile Normal file
View file

@ -0,0 +1,13 @@
.PHONY: run debug test help
run:
# run the thing
debug:
# run the thing in debug mode
test:
pytest
help:
echo "help!"