.PHONY: all check lint test

all: check

check: lint test

test:
	@scripts/test

lint:
	@scripts/lint
