
lint:
	@echo "=============== Running mypy (Type Checks) ==============="
	./venv/bin/mypy state_manager.py
	@echo

	@echo "=============== Running pylint (Code Checks) ==============="
	./venv/bin/pylint state_manager.py
	@echo


test:
	@echo "=============== Running pytest (Unit Tests) ==============="
	./venv/bin/pytest
