add fmt and lint to README

This commit is contained in:
XenGi 2024-01-24 13:28:54 +01:00
parent bc2f64eefd
commit d52ba880cd
Signed by: xengi
SSH key fingerprint: SHA256:jxWM2RTHvxxcncXycwwWkP7HCWb4VREN05UGJTbIPZg
3 changed files with 6 additions and 0 deletions

View file

@ -27,6 +27,9 @@ verify: ## Verify dependencies have expected content
format: ## Format go code
go fmt ./...
lint: ## Run linter (staticcheck)
staticcheck -f stylish ./...
test: ## Run tests
go test ./...