Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ setup-venv: ## Create virtual environment
install-dependencies: setup-venv ## Install all dependencies including extras
uv sync $(PYTHON_ARG) --all-extras --reinstall

install: install-uv install-dependencies ## Install uv and dependencies
install-hooks: ## Install pre-commit hooks
uv run $(PYTHON_ARG) prek install
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't know prek was a thing. Nice add

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yea it was migrated from precommit, we use it in make lint too


install: install-uv install-dependencies install-hooks ## Install uv, dependencies, and pre-commit hooks

# ===============
# Code Validation
Expand Down