Support mid-drag modifier changes #2570
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: pyright | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: pyright-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| pyright: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| # Separate cache per Python version so each matrix job gets full hits | |
| # (the `examples` extra pulls heavy deps like torch). | |
| cache-suffix: ${{ matrix.python-version }} | |
| - name: Run pyright | |
| run: | | |
| uv run --extra dev --extra examples --python ${{ matrix.python-version }} pyright ./src | |
| uv run --extra dev --extra examples --python ${{ matrix.python-version }} pyright ./examples |