2022-07-09 22:17:41 +08:00
|
|
|
lint:
|
|
|
|
golangci-lint run -c ./golangci.yml ./...
|
|
|
|
|
|
|
|
test:
|
2022-10-30 16:28:14 +08:00
|
|
|
go test ./... -v --cover
|
2022-07-09 22:17:41 +08:00
|
|
|
|
|
|
|
test-report:
|
2022-10-30 16:28:14 +08:00
|
|
|
go test ./... -v --cover -coverprofile=coverage.out
|
2022-07-09 22:17:41 +08:00
|
|
|
go tool cover -html=coverage.out
|