Skip to content

Commit 0ec8b4d

Browse files
committed
Restore GitHub workflow files
- Restore .github/workflows/ci.yml - Keep GitHub Actions CI configuration intact - Maintain repository's GitHub integration
1 parent 9b96430 commit 0ec8b4d

1 file changed

Lines changed: 50 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- name: Set up Python
14+
uses: actions/setup-python@v5
15+
with:
16+
python-version: '3.11'
17+
18+
- name: Install Python deps
19+
run: |
20+
python -m pip install --upgrade pip
21+
pip install -r requirements.txt
22+
23+
- name: Python lint and tests
24+
run: |
25+
python -m pytest -q
26+
27+
- name: Build MCP server
28+
continue-on-error: true
29+
run: |
30+
cd mcp-server
31+
npm ci || npm install
32+
npm run build
33+
34+
- name: Build Web UI
35+
continue-on-error: true
36+
run: |
37+
cd web
38+
npm ci || npm install
39+
npm run build
40+
41+
- name: Demo seed
42+
run: |
43+
bash scripts/demo_seed.sh
44+
45+
- name: Upload demo artifacts
46+
uses: actions/upload-artifact@v4
47+
with:
48+
name: demo-artifacts
49+
path: artifacts/run1
50+

0 commit comments

Comments
 (0)