516f1b1946
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
12 lines
395 B
Markdown
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.
|