We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7df827f commit 7c51c02Copy full SHA for 7c51c02
1 file changed
Makefile
@@ -28,7 +28,7 @@ test: bin/git-sizer gotest
28
29
.PHONY: gotest
30
gotest:
31
- $(GO) test -timeout 60s $(GOFLAGS) $(GO_PKGS)
+ $(GO) test -timeout 60s $(GOFLAGS) ./...
32
33
.PHONY: gofmt
34
gofmt:
@@ -40,7 +40,7 @@ goimports:
40
41
.PHONY: govet
42
govet:
43
- $(GO) vet $(GO_PKGS)
+ $(GO) vet ./...
44
45
.PHONY: clean
46
clean:
0 commit comments