Skip to content

Update GitHub Actions #12

Update GitHub Actions

Update GitHub Actions #12

Workflow file for this run

name: MCP smoke test
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
mcp:
env:
PY_COLORS: "1"
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 6
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
steps:
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Lint with flake8
run: |
pip install flake8
flake8 . --count --show-source --statistics --exclude=temp
- name: Install uv
uses: astral-sh/setup-uv@v9.0.0
with:
enable-cache: true
- name: Install project
run: uv sync
- name: Test MCP servers
run: uv run python tests/test_mcp.py