.PHONY: test check mypy

check: test mypy

test:
	pytest

mypy:
	mypy cardgame
