mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-02-12 19:12:49 +00:00
15 lines
204 B
Makefile
15 lines
204 B
Makefile
.PHONY: lint test format check
|
|
|
|
lint:
|
|
uv run ruff check src tests
|
|
uv run mypy src
|
|
|
|
test:
|
|
uv run pytest tests
|
|
|
|
format:
|
|
uv run ruff format src tests
|
|
uv run ruff check --fix src tests
|
|
|
|
check: lint test
|