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 ./...