.github/workflows: add nightly conformance tests#752
Merged
maciej-kisiel merged 1 commit intomodelcontextprotocol:mainfrom Jan 19, 2026
Merged
Conversation
Add a conformance test job to the nightly GitHub workflow that runs the SDK conformance tests using ./scripts/conformance.sh. The job: - Runs on ubuntu-latest - Sets up Go 1.25 - Sets up Node.js 20 (required for npx) - Executes the conformance test script This ensures the SDK is regularly tested against the official MCP conformance test suite to catch regressions early.
maciej-kisiel
approved these changes
Jan 13, 2026
Contributor
maciej-kisiel
left a comment
There was a problem hiding this comment.
IIUC this would require to be merged into a branch to actually run the workflow to test it, so it's probably not worth the effort. In that case, it looks good to me.
Contributor
|
Merged and confirmed they conformance run and pass via a manual run. Thanks! |
ghoshabhi
reviewed
Feb 9, 2026
| with: | ||
| node-version: "20" | ||
| - name: Run conformance tests | ||
| run: ./scripts/conformance.sh |
There was a problem hiding this comment.
isn't this incorrect? there is no file called conformance.sh under the scripts directory?
Contributor
There was a problem hiding this comment.
It was later adjusted to server-conformance.sh in #764, as the script was forked into client- and server-side versions.
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.
Add a conformance test job to the nightly GitHub workflow that runs the SDK conformance tests using ./scripts/conformance.sh.
The job:
This ensures the SDK is regularly tested against the official MCP conformance test suite to catch regressions early.