516f1b1946
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
395 B
395 B
Go project instructions
Applies when: this repo has go.mod.
Makefile-first workflow
- CI should run
make check, andmake racefor concurrency-sensitive paths. - Put
golangci-lintandgosecwiring behind Make targets when introduced.
Conventions to implement
make testshould rungo test ./....- Avoid bespoke CI steps when a Make target can encode the same behavior.