diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e011f65 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +.PHONY: default test clean all +default: test + +# Installs pre-commit hooks +.PHONY: install-hooks +install-hooks: + pre-commit install --install-hooks + +.PHONY: test +test: + pre-commit run --all-files