File tree Expand file tree Collapse file tree 7 files changed +727
-476
lines changed Expand file tree Collapse file tree 7 files changed +727
-476
lines changed Original file line number Diff line number Diff line change 4545test : 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 .
4949quick-test : all
5050 go run build/ci.go test --quick
5151
5252# ? lint: Run certain pre-selected linters.
5353lint : # # 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.
5757tidy : # # 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'.
6161generate : # # 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.
6569fmt :
6670 gofmt -s -w $(shell find . -name "* .go")
You can’t perform that action at this time.
0 commit comments