add go fmt to Make

This commit is contained in:
XenGi 2024-01-24 13:23:54 +01:00
parent 93f896fe90
commit bc2f64eefd
Signed by: xengi
SSH key fingerprint: SHA256:jxWM2RTHvxxcncXycwwWkP7HCWb4VREN05UGJTbIPZg

View file

@ -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 ./...