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

12 lines
395 B
Markdown

# 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.