Skip to content

feat: Make AI config support Windsurf and Claude and other tools. #619

feat: Make AI config support Windsurf and Claude and other tools.

feat: Make AI config support Windsurf and Claude and other tools. #619

Workflow file for this run

name: isort (Import Sorting)
on:
push:
branches: [main, mcp2]
pull_request:
branches: [main, mcp2]
jobs:
isort-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install uv
run: pip install uv
- name: Install dependencies
run: uv pip install ".[lint]" --system
- name: Run isort (check only)
run: uv run isort src tests --check-only --diff --skip _version.py --skip .venv