test:
  ruff check src/smgdc
  pytest tests
  mypy -p src

format:
  ruff check src --select I001 --fix
  ruff format src/smgdc
  ruff check tests --select I001 --fix
  ruff format tests