Go project conventions

Project conventions with module caching, linting, security checks, and tests via Make

rcarmo Updated

File contents

Skill: Go project conventions

Goal

Provide a standard Go workflow with module caching, linting, security checks, and tests driven by Make.

Make targets (recommended)

  • make depsgo mod download + go mod tidy
  • make vetgo vet ./...
  • make lintfmt + vet + staticcheck (if available)
  • make securitygosec ./... (if available)
  • make testgo test -v ./...
  • make checkmake lint && make test (standard validation pipeline)

rcarmo/gotel/tree/main/.github/skills/go commit 658de3f8db

Frequently asked questions

npx skillmds@latest add rcarmo/go-project-conventions-2