Problem
Local documentation tells contributors to run make test, while CI currently runs raw go test commands directly. This creates two sources of truth.
Proposed change
Update CI to use make test as the canonical test entrypoint.
Why this belongs here
The Makefile, README, and CI workflow all live in this repository. Keeping them aligned is a project concern, not downstream configuration.
Alternatives considered
- Keep CI on direct
go test commands.
This is workable, but it drifts from documented local usage.
- Document both as equally valid.
This is weaker because it preserves ambiguity.
Compatibility impact
No breaking change. Documentation and CI become more consistent.
Problem
Local documentation tells contributors to run
make test, while CI currently runs rawgo testcommands directly. This creates two sources of truth.Proposed change
Update CI to use
make testas the canonical test entrypoint.Why this belongs here
The Makefile, README, and CI workflow all live in this repository. Keeping them aligned is a project concern, not downstream configuration.
Alternatives considered
go testcommands.This is workable, but it drifts from documented local usage.
This is weaker because it preserves ambiguity.
Compatibility impact
No breaking change. Documentation and CI become more consistent.