diff --git a/Makefile b/Makefile index 026fa0d..3cfe603 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,10 @@ lint: test: docker compose exec app go test main_test.go -ci: lint test +start: + docker compose up -d + +ci: start lint test +