Skip to content

Commit 7c51c02

Browse files
committed
gotest, govet: simplify Makefile targets
1 parent 7df827f commit 7c51c02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ test: bin/git-sizer gotest
2828

2929
.PHONY: gotest
3030
gotest:
31-
$(GO) test -timeout 60s $(GOFLAGS) $(GO_PKGS)
31+
$(GO) test -timeout 60s $(GOFLAGS) ./...
3232

3333
.PHONY: gofmt
3434
gofmt:
@@ -40,7 +40,7 @@ goimports:
4040

4141
.PHONY: govet
4242
govet:
43-
$(GO) vet $(GO_PKGS)
43+
$(GO) vet ./...
4444

4545
.PHONY: clean
4646
clean:

0 commit comments

Comments
 (0)