13 lines
130 B
Makefile
13 lines
130 B
Makefile
.PHONY: check test run
|
|
|
|
check:
|
|
ruff format --check .
|
|
ruff check .
|
|
mypy app
|
|
|
|
test:
|
|
pytest
|
|
|
|
run:
|
|
uvicorn app.main:app --reload
|