Skip to content

Commit 3381035

Browse files
claudemaciej-kisiel
authored andcommitted
.github/workflows: add nightly conformance tests
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.
1 parent 13488f7 commit 3381035

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/nightly.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,19 @@ jobs:
1818
with:
1919
go-version-file: go.mod
2020
go-package: ./...
21+
22+
conformance:
23+
runs-on: ubuntu-latest
24+
steps:
25+
- name: Check out code
26+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
27+
- name: Set up Go
28+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
29+
with:
30+
go-version: "^1.25"
31+
- name: Set up Node.js
32+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
33+
with:
34+
node-version: "20"
35+
- name: Run conformance tests
36+
run: ./scripts/conformance.sh

0 commit comments

Comments
 (0)