From 30febb63a31546c1056dcce303fa6503d1bc1b48 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Tue, 19 May 2020 13:52:36 -0700 Subject: [PATCH] Add `all` make target for test and lint --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index bda4ce2..3173fef 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ -.PHONY: clean all +.PHONY: clean .PHONY: default default: test .PHONY: test -test: check +test: docker-compose -f ./tests/docker-compose-private.yml up \ --build --force-recreate \ --abort-on-container-exit --exit-code-from plugin @@ -18,3 +18,6 @@ install-hooks: .PHONY: check check: pre-commit run --all-files + +.PHONY: all +all: test check