go-workflow
Installation
SKILL.md
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119.
Go Projects Workflow
Guidelines for working with Go projects using modern tooling.
Tool Grid
| Task | Tool | Command |
|---|---|---|
| Lint | golangci-lint | golangci-lint run |
| Format | goimports | goimports -w . |
| Build | go build | go build ./... |
| Test | go test | go test ./... |
| Coverage | go test | go test -cover ./... |
| Fuzzing | native | go test -fuzz=Fuzz |
| Race detection | built-in | go test -race ./... |
| Vulnerability | govulncheck | govulncheck ./... |