From 6b4d908e7ea5dd1e6e7f11989870f8dd28591da4 Mon Sep 17 00:00:00 2001 From: Steven Masley Date: Tue, 12 Dec 2023 16:55:13 -0600 Subject: [PATCH] chore: makefile set sqlc-vet to .Phony (#11169) --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 3ef85ea1be..7580163f17 100644 --- a/Makefile +++ b/Makefile @@ -712,6 +712,7 @@ sqlc-vet: test-postgres-docker echo "--- sqlc vet" SQLC_DATABASE_URL="postgresql://postgres:postgres@localhost:5432/$(shell go run scripts/migrate-ci/main.go)" \ sqlc vet -f coderd/database/sqlc.yaml && echo "Passed sqlc vet" +.PHONY: sqlc-vet # When updating -timeout for this test, keep in sync with # test-go-postgres (.github/workflows/coder.yaml).