Skip to main content
Glama
tests.yml1.41 kB
name: Tests on: push: branches: [ main ] pull_request: branches: [ main ] permissions: contents: read jobs: test: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] python-version: ['3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -e . pip install pytest pytest-cov pytest-asyncio - name: Run tests run: | pytest tests/ -v --cov=markdown_editor --cov-report=term-missing - name: Test import run: | python -c "from markdown_editor import server; print('Import successful')" lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: '3.10' - name: Install dependencies run: | python -m pip install --upgrade pip pip install ruff mypy - name: Lint with ruff run: | ruff check src/ - name: Type check with mypy run: | mypy src/markdown_editor --ignore-missing-imports || true

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/KazKozDev/markdown-editor-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server