Files
webterm/.github/instructions/go.instructions.md
T
2026-02-14 22:40:29 +00:00

395 B

Go project instructions

Applies when: this repo has go.mod.

Makefile-first workflow

  • CI should run make check, and make race for concurrency-sensitive paths.
  • Put golangci-lint and gosec wiring behind Make targets when introduced.

Conventions to implement

  • make test should run go test ./....
  • Avoid bespoke CI steps when a Make target can encode the same behavior.