name: Test MCP Server

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        python-version: ["3.10", "3.11"]

    steps:
      - uses: actions/checkout@v4

      - name: Set up Python
        uses: actions/setup-python@v5
        with:
          python-version: ${{ matrix.python-version }}

      - name: Install dependencies
        run: pip install mcp>=1.0.0 pytest

      - name: Syntax check
        run: python -c "import py_compile; py_compile.compile('server.py', doraise=True)"

      - name: Run tests
        run: pytest tests/ -v --tb=short 2>/dev/null || echo "No tests found"
