From 18b033add1b4724cb514a6e122364ef045a8ce9f Mon Sep 17 00:00:00 2001 From: Vojtech Mares Date: Sun, 23 Jun 2024 10:57:02 +0200 Subject: [PATCH] chore(Makefile): add target to run tests --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index a81b9f6..9304e15 100644 --- a/Makefile +++ b/Makefile @@ -29,3 +29,8 @@ local-migrate-drop: local-db-seed: @echo "Seeding database..." @APP_ENV="development" DATABASE_URL_FILE="secrets/postgres_url" go run ./cmd/seed/main.go + +.PHONY: test +test: + @echo "Running tests..." + @go test -v ./...