forked from modelcontextprotocol/java-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (53 loc) · 1.79 KB
/
conformance.yml
File metadata and controls
62 lines (53 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Conformance Tests
on:
pull_request: {}
push:
branches: [main]
workflow_dispatch:
jobs:
server:
name: Server Conformance
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
- name: Build and start server
run: |
mvn clean install -DskipTests
mvn exec:java -pl conformance-tests/server-servlet -Dexec.mainClass="io.modelcontextprotocol.conformance.server.ConformanceServlet" &
timeout 30 bash -c 'until curl -s http://localhost:8080/mcp > /dev/null 2>&1; do sleep 0.5; done'
- name: Run conformance tests
uses: modelcontextprotocol/conformance@v0.1.11
with:
mode: server
url: http://localhost:8080/mcp
suite: active
expected-failures: ./conformance-tests/conformance-baseline.yml
client:
name: Client Conformance
runs-on: ubuntu-latest
strategy:
matrix:
scenario: [initialize, tools_call, elicitation-sep1034-client-defaults, sse-retry]
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
- name: Build client
run: mvn clean install -DskipTests
- name: Run conformance test
uses: modelcontextprotocol/conformance@v0.1.11
with:
mode: client
command: 'java -jar conformance-tests/client-jdk-http-client/target/client-jdk-http-client-0.18.0-SNAPSHOT.jar'
scenario: ${{ matrix.scenario }}
expected-failures: ./conformance-tests/conformance-baseline.yml