-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
predeclared does not work with Go 1.20
- Loading branch information
Showing
1 changed file
with
1 addition
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
.PHONY: ci | ||
# TODO: add staticcheck back ASAP; removed temporarily because it | ||
# complains about a lot of APIs deprecated by protobuf 1.4 | ||
ci: deps checkgofmt vet predeclared ineffassign test test-nounsafe | ||
ci: deps checkgofmt vet ineffassign test test-nounsafe | ||
|
||
.PHONY: deps | ||
deps: | ||
|
@@ -51,11 +51,6 @@ ineffassign: | |
exit 1; \ | ||
fi | ||
|
||
.PHONY: predeclared | ||
predeclared: | ||
@go install github.com/nishanths/[email protected] | ||
predeclared ./... | ||
|
||
# Intentionally omitted from CI, but target here for ad-hoc reports. | ||
.PHONY: golint | ||
golint: | ||
|