Skip to content

[mcp] feat: add HTTP server mode and remote usage docs #174

[mcp] feat: add HTTP server mode and remote usage docs

[mcp] feat: add HTTP server mode and remote usage docs #174

Workflow file for this run

name: pre-commit
on:
pull_request:
push:
branches: [main, master]
jobs:
pre-commit:
name: Run pre-commit checks
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Run pre-commit (no fix)
run: |
pre-commit run --all-files --hook-stage manual --show-diff-on-failure --color always