add go fmt to Make
This commit is contained in:
parent
93f896fe90
commit
bc2f64eefd
1 changed files with 3 additions and 0 deletions
3
Makefile
3
Makefile
|
@ -24,6 +24,9 @@ tidy: ## Add missing and remove unused modules
|
|||
verify: ## Verify dependencies have expected content
|
||||
go mod verify
|
||||
|
||||
format: ## Format go code
|
||||
go fmt ./...
|
||||
|
||||
test: ## Run tests
|
||||
go test ./...
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue