Skip to content

fix: rename mcp/ to mcp_servers/ to resolve namespace collision #29

fix: rename mcp/ to mcp_servers/ to resolve namespace collision

fix: rename mcp/ to mcp_servers/ to resolve namespace collision #29

Workflow file for this run

name: MiniAgent CI
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 6 * * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: pip install torch --index-url https://download.pytorch.org/whl/cpu && pip install -e ".[dev]"
- name: Test
run: pytest tests/ -v
- name: Eval
run: python eval/advertising_bench.py --quick
heartbeat:
runs-on: ubuntu-latest
if: github.event_name == 'schedule'
steps:
- uses: actions/checkout@v4
- name: Heartbeat
run: echo "🫀 MiniAgent heartbeat — $(date -u) — 14 platforms, 80+ tools, 5 skills"