15 lines
166 B
Makefile
15 lines
166 B
Makefile
# list recipes
|
|
default:
|
|
@just --list
|
|
|
|
format:
|
|
uv run ruff format
|
|
|
|
check:
|
|
uv run ruff check .
|
|
|
|
fix:
|
|
uv run ruff check --fix .
|
|
|
|
test:
|
|
uv run pytest
|