diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -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 |