aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a617378..d929a51 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,17 @@
-.PHONY: all lock lint precommit start format
+.PHONY: all install lock lint precommit start format
-all: lock precommit
+all: install precommit
+
+install:
+ uv sync --frozen --all-groups
lock:
uv lock --upgrade
uv sync --frozen --all-groups
+outdated:
+ uv tree --outdated
+
lint:
uv run pre-commit run --all-files