build(make): disables linter, cleans the test command
This commit is contained in:
parent
579d104e5a
commit
8250af827b
6
Makefile
6
Makefile
@ -12,11 +12,13 @@ generate:
|
|||||||
|
|
||||||
.PHONY: lint
|
.PHONY: lint
|
||||||
lint:
|
lint:
|
||||||
golangci-lint run --enable-all --disable=exhaustivestruct,godox
|
golangci-lint run \
|
||||||
|
--enable-all \
|
||||||
|
--disable=exhaustivestruct,godox,varnamelen
|
||||||
|
|
||||||
.PHONY: test
|
.PHONY: test
|
||||||
test:
|
test:
|
||||||
go test -v -race -cover -coverprofile=coverage.out -tags=integration ./... -timeout=120m
|
go test -v -race -cover -coverprofile=coverage.out
|
||||||
|
|
||||||
.PHONY: coverage
|
.PHONY: coverage
|
||||||
coverage: test
|
coverage: test
|
||||||
|
Loading…
Reference in New Issue
Block a user