chore(deps): update dependency isort to v8 #1748
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: Formatting and Type Checks | |
| on: ["push", "pull_request"] | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python 3.14 | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: "3.14" | |
| activate-environment: true | |
| - name: Install dependencies | |
| run: | | |
| uv export --no-hashes | uv pip install -r - basedpyright --color always | |
| - name: Check formatting | |
| run: | | |
| isort . --check --diff | |
| - name: Check imports order | |
| run: | | |
| black . --check --diff | |
| - name: Check typing | |
| run: | | |
| basedpyright |