mirror of
https://github.com/trailofbits/dropkit
synced 2026-06-21 14:11:54 +00:00
17 lines
230 B
Makefile
17 lines
230 B
Makefile
.PHONY: dev lint format test audit
|
|
|
|
dev:
|
|
uv sync --all-groups
|
|
|
|
lint:
|
|
uv run ruff format --check . && uv run ruff check . && uv run ty check dropkit/
|
|
|
|
format:
|
|
uv run ruff format .
|
|
|
|
test:
|
|
uv run pytest
|
|
|
|
audit:
|
|
uv run pip-audit
|