14 lines
199 B
Makefile
14 lines
199 B
Makefile
.PHONY: format lint type test verify run
|
|
format:
|
|
ruff format .
|
|
lint:
|
|
ruff format --check .
|
|
ruff check .
|
|
type:
|
|
mypy app
|
|
test:
|
|
pytest -q
|
|
verify: lint type test
|
|
run:
|
|
uvicorn app.main:app --reload
|