#################
# Makefile HELP #
#################

- Build code:
  make build

- Build docker image:
  make docker

- Clean:
  make clean

- Lint (ruff + mypy):
  make lint

- Check (lint + mutable class attrs):
  make check

- Audit production requirements (pip-audit==2.10.1, pinned with dev deps):
  make audit

- Test:
  make test

- Docs (mkdocs build --strict):
  make docs

- Docs preview:
  make docs-serve

- All:
  make all

- Publish to testpypi:
  make publish-test

- Publish to pypi:
  make publish
