16 lines
260 B
Makefile
16 lines
260 B
Makefile
.PHONY: install format lint type test verify image
|
|
install:
|
|
python -m pip install -e '.[dev]'
|
|
format:
|
|
ruff format .
|
|
lint:
|
|
ruff format --check .
|
|
ruff check .
|
|
type:
|
|
mypy src
|
|
test:
|
|
pytest -q
|
|
verify: lint type test
|
|
image:
|
|
docker build -t endpoint-monitor .
|