We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/praneethravuri/pitstop'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
ci.yml•1.57 kB
name: CI
on:
push:
branches: [ main ]
paths:
- 'src/**'
- 'pyproject.toml'
- 'uv.lock'
- '.github/workflows/ci.yml'
pull_request:
branches: [ main ]
paths:
- 'src/**'
- 'pyproject.toml'
- 'uv.lock'
- '.github/workflows/ci.yml'
jobs:
lint-and-type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install Dependencies
run: uv sync --all-extras --dev
# Assuming ruff is used/will be used for linting
# If not in project deps yet, we can run it via uvx
- name: Lint with Ruff
run: uvx ruff check .
# Type checking
# If mypy not in project deps, run via uvx
- name: Type check with Mypy
run: uvx mypy src/pitstop
test:
runs-on: ubuntu-latest
needs: lint-and-type-check
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install Dependencies
run: uv sync --all-extras --dev
# Run tests (placeholder if no tests yet, but good practice)
# - name: Run Tests
# run: uv run pytest