Skip to content

Commit

Permalink
build: fix phony make targets
Browse files Browse the repository at this point in the history
  • Loading branch information
shoenig committed Sep 30, 2023
1 parent 8ca162c commit b33bc13
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,17 @@ test:
@echo "--> Running Tests ..."
@go test -v -race ./...

.PHONY: vet
vet:
@echo "--> Vet Go sources ..."
@go vet ./...

.PHONY: generate
generate:
@echo "--> Go generate ..."
@go generate ./...

.PHONY: changes
changes: generate
@echo "--> Checking for source diffs ..."
@go mod tidy
Expand Down

0 comments on commit b33bc13

Please sign in to comment.