JGLUE / Makefile
shunk031's picture
Use uv (#27)
3bef9b3 unverified
raw
history blame
414 Bytes
#
# Installation
#
.PHONY: setup
setup:
pip install -U uv
.PHONY: install
install:
uv sync
#
# linter/formatter/typecheck
#
.PHONY: lint
lint: install
uv run ruff check --output-format=github .
.PHONY: format
format: install
uv run ruff format --check --diff .
.PHONY: typecheck
typecheck: install
uv run mypy --cache-dir=/dev/null .
.PHONY: test
test: install
uv run pytest -vsx --log-cli-level=INFO