.PHONY: checks
checks: lint test

.PHONY: lint
lint:
	@echo "===== flake8"
	flake8
	@echo ""
	@echo "===== zuban"
	zuban check
	@echo ""

.PHONY: test
test:
	@echo "===== pytest"
	python -m pytest
	@echo ""

.PHONY: neko
neko:
	python -m neko.neko

.PHONY: rgb
rgb:
	python -m neko.rgb
