fix: rename mcp/ to mcp_servers/ to resolve namespace collision #29
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" |