Conversation
Adds a CI pipeline that runs on pushes and PRs to main with two jobs: - Test: build, vet, and test with race detector and coverage - Lint: golangci-lint via the official action Both jobs clone go-didcomm alongside the repo to satisfy the replace directive. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
actions/checkout doesn't allow checking out to paths outside the workspace. Use git clone directly instead. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The pre-built golangci-lint binary (v1.64.8) was built with Go 1.24 and can't target Go 1.25. Install from source via go install so it uses the Go 1.25 toolchain. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Use published go-didcomm v0.1.0 instead of local ../go-didcomm replace - Simplify CI by removing go-didcomm clone steps - Fix SA1012 lint: use context.TODO() instead of nil in client_test.go Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Currently fails due to Go 1.25.0 stdlib vulnerabilities that are fixed in 1.25.2+. Use continue-on-error so it reports without failing CI. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Updates go.mod from 1.25.0 to 1.25.3, fixing all 10 stdlib vulns reported by govulncheck. Vulncheck can now fail CI properly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Add Documentation requirements section to CLAUDE.md with rules for maintaining CHANGELOG.md, README.md, and CLAUDE.md - Remove stale local replace directive reference from CLAUDE.md - Create initial CHANGELOG.md with unreleased changes from this PR Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1.25.3 still had 4 crypto/x509 vulns fixed in 1.25.5. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Go 1.26 is the latest stable release (Feb 2026). Includes Green Tea GC by default and ~30% reduced cgo overhead. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.github/workflows/ci.ymlwith two parallel CI jobsgo-didcommalongside the repo to satisfy the localreplacedirective, and the test job initializes the TAIPs submodule for test vectorsTest plan
🤖 Generated with Claude Code