-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathMakefile
More file actions
20 lines (15 loc) · 547 Bytes
/
Makefile
File metadata and controls
20 lines (15 loc) · 547 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.PHONY: install-commands install-commands-force test sync help
help:
@echo "Available targets:"
@echo " install-commands Install slash commands to ~/.claude/commands/"
@echo " install-commands-force Install slash commands (overwrite existing)"
@echo " test Run pytest"
@echo " sync Sync dependencies with uv"
install-commands:
uv run scripts/install-commands.py
install-commands-force:
uv run scripts/install-commands.py --force
test:
uv run --group dev pytest
sync:
uv sync --group dev