Skip to content

Commit

Permalink
make: remove vet target
Browse files Browse the repository at this point in the history
The vet target is not needed anymore, "go vet" is also run via the check
target by golangci-lint
  • Loading branch information
fho committed Apr 20, 2022
1 parent 52ef14d commit bbcd0ac
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ list: ## list Makefile targets
fmt: ## Run go fmt against code
go fmt ./...

.PHONY: vet
vet: ## Run go vet against code
go vet ./...

.PHONY: tests
tests: ## Run all tests and requires a running rabbitmq-server
env AMQP_URL=amqp://guest:[email protected]:5672/ go test -race -v -tags integration
Expand Down

0 comments on commit bbcd0ac

Please sign in to comment.