Skip to content

Commit

Permalink
feat: add Makefile to simplify running scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
joakimen committed Jun 26, 2024
1 parent a9f3fd4 commit e68d6f9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit e68d6f9

Please sign in to comment.