-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (35 loc) · 1.02 KB
/
example-multi-server.yml
File metadata and controls
41 lines (35 loc) · 1.02 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
name: Example - Multi Server
on:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
- uses: actions/setup-python@v5
with:
python-version: '3.12'
# This is just an example - replace with your actual server setup
- name: Setup servers
run: |
echo "Setting up Python and TypeScript servers..."
- name: Run conformance tests
uses: ./
with:
mode: test
servers: |
[
{
"name": "python-example",
"start-command": "echo 'Python server' && sleep 10",
"url": "http://localhost:8000/mcp"
},
{
"name": "typescript-example",
"start-command": "echo 'TypeScript server' && sleep 10",
"url": "http://localhost:3000/mcp"
}
]