13 lines
203 B
Makefile
13 lines
203 B
Makefile
.PHONY: format lint type test check docker-build
|
|
format:
|
|
ruff format .
|
|
lint:
|
|
ruff check .
|
|
type:
|
|
mypy app
|
|
test:
|
|
pytest -q
|
|
check: lint type test
|
|
docker-build:
|
|
docker build -t endpoint-monitor:local .
|