diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c0b8548 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +VENV = .venv/bin +SCRIPTS = ./dev-scripts + +.PHONY: all verify venv update-docs + +all: check + +check: + npm install + $(SCRIPTS)/check-docs.sh + $(SCRIPTS)/lint-modified-shell-scripts.sh + +update-docs: + $(SCRIPTS)/update-docs.sh + +venv: + python -m venv .venv; \ + $(VENV)/pip install -r requirements.txt