From 406364be917708666bbc2f15353e42113f3a4fbd Mon Sep 17 00:00:00 2001 From: Ethan Lowman Date: Tue, 24 May 2022 18:00:14 -0400 Subject: [PATCH] build: Fix references to check-protos target in Makefile Signed-off-by: Ethan Lowman --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3a4ec95..9753e5c 100644 --- a/Makefile +++ b/Makefile @@ -57,7 +57,7 @@ TESTFLAGS_PARALLEL ?= 8 # Use this to replace `go test` with, for instance, `gotestsum` GOTEST ?= $(GO) test -.PHONY: clean all AUTHORS build binaries test integration generate protos checkprotos coverage ci check help install vendor install-protobuf install-protobuild +.PHONY: clean all AUTHORS build binaries test integration generate protos check-protos coverage ci check help install vendor install-protobuf install-protobuild .DEFAULT: default # Forcibly set the default goal to all, in case an include above brought in a rule definition. @@ -69,7 +69,7 @@ check: proto-fmt ## run all linters @echo "$(WHALE) $@" GOGC=75 golangci-lint run -ci: check binaries checkprotos coverage # coverage-integration ## to be used by the CI +ci: check binaries check-protos coverage # coverage-integration ## to be used by the CI AUTHORS: .mailmap .git/HEAD git log --format='%aN <%aE>' | sort -fu > $@