Skip to content

Commit 82f79a1

Browse files
committed
Remove deprecated golint from Makefile
1 parent 526ceaf commit 82f79a1

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

Makefile

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11
GO ?= go
22

3+
vet:
4+
@$(GO) vet ./...
5+
.PHONY: vet
36

4-
lint: vet
5-
@golint -set_exit_status ./...
6-
.PHONY: lint
7-
8-
test: lint
7+
test: vet
98
@$(GO) test -v -race -short ./...
109
.PHONY: test
1110

12-
test-full: lint
11+
test-full: vet
1312
@$(GO) test -v -race ./...
1413
.PHONY: test-full
15-
16-
vet:
17-
@$(GO) vet ./...
18-
.PHONY: vet

0 commit comments

Comments
 (0)