# If you don't have 'just' installed, install it with the following command:
#
# $  uv tool install rust-just
#
# The 'just' website: https://just.systems/man/en/

default:
    @just --list

typecheck:
    uv run --with mypy mypy -p egse --strict

test:
    uv run pytest -v

format:
    uvx ruff format

check:
    uvx ruff check --no-fix
