Skip to content

Commit 48d57bb

Browse files
committed
build, internal, Makefile: upgrade package build
1 parent 4c22aa9 commit 48d57bb

File tree

7 files changed

+727
-476
lines changed

7 files changed

+727
-476
lines changed

Makefile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,22 +45,26 @@ all:
4545
test: all
4646
go run build/ci.go test
4747

48-
#? quick-test: Run the tests except time-consuming tests.
48+
#? quick-test: Run the tests except time-consuming packages.
4949
quick-test: all
5050
go run build/ci.go test --quick
5151

5252
#? lint: Run certain pre-selected linters.
5353
lint: ## Run linters.
5454
$(GORUN) build/ci.go lint
5555

56-
#? tidy: Verify go.mod and go.sum by 'go mod tidy'
56+
#? tidy: Verify go.mod and go.sum are updated.
5757
tidy: ## Run 'go mod tidy'.
5858
$(GORUN) build/ci.go tidy
5959

60-
#? generate: Verify everything is 'go generate'-ed
60+
#? generate: Verify everything is 'go generate'.
6161
generate: ## Run 'go generate ./...'.
6262
$(GORUN) build/ci.go generate
6363

64+
#? baddeps: Verify certain dependencies are avoided.
65+
baddeps:
66+
$(GORUN) build/ci.go baddeps
67+
6468
#? fmt: Ensure consistent code formatting.
6569
fmt:
6670
gofmt -s -w $(shell find . -name "*.go")

0 commit comments

Comments
 (0)