What
CI fails with 'missing go.sum entry' for bubbletea and lipgloss dependencies. The go.sum file exists but is stale/outdated relative to go.mod.
Why
CI pipeline is completely blocked. The go.sum needs to be regenerated to match the current go.mod.
How
- Run 'go mod tidy' to regenerate go.sum with correct checksums
- Commit the updated go.sum
- Verify CI passes after the commit
What
CI fails with 'missing go.sum entry' for bubbletea and lipgloss dependencies. The go.sum file exists but is stale/outdated relative to go.mod.
Why
CI pipeline is completely blocked. The go.sum needs to be regenerated to match the current go.mod.
How