Merge pull request #118 from ethan-lowman-dd/ethan.lowman/fix-makefile-check-protos
build: Fix references to check-protos target in Makefile
This commit is contained in:
commit
e6c17ec28a
4
Makefile
4
Makefile
@ -57,7 +57,7 @@ TESTFLAGS_PARALLEL ?= 8
|
|||||||
# Use this to replace `go test` with, for instance, `gotestsum`
|
# Use this to replace `go test` with, for instance, `gotestsum`
|
||||||
GOTEST ?= $(GO) test
|
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
|
.DEFAULT: default
|
||||||
|
|
||||||
# Forcibly set the default goal to all, in case an include above brought in a rule definition.
|
# 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) $@"
|
@echo "$(WHALE) $@"
|
||||||
GOGC=75 golangci-lint run
|
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
|
AUTHORS: .mailmap .git/HEAD
|
||||||
git log --format='%aN <%aE>' | sort -fu > $@
|
git log --format='%aN <%aE>' | sort -fu > $@
|
||||||
|
Loading…
Reference in New Issue
Block a user