feat: Make AI config support Windsurf and Claude and other tools. #619
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |