-
Notifications
You must be signed in to change notification settings - Fork 99
44 lines (36 loc) · 931 Bytes
/
Copy pathmcp.yml
File metadata and controls
44 lines (36 loc) · 931 Bytes
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
name: MCP Tests
on:
workflow_dispatch:
pull_request:
branches: [master]
paths: ['mcp/**']
push:
branches: [master]
paths: ['mcp/**']
jobs:
mcp-tests:
runs-on: ubuntu-22.04
timeout-minutes: 30
name: MCP unit & smoke tests
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Install opam & build HOL Light
run: |
sudo apt update && sudo apt install -y opam xdot
opam init --disable-sandboxing
make switch
eval $(opam env)
make
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install MCP dependencies
run: cd mcp && uv sync
- name: Run unit tests
run: |
eval $(opam env)
cd mcp && uv run pytest test_server.py -v
- name: Run smoke tests
run: |
eval $(opam env)
cd mcp && uv run python smoke_test.py