Bump mypy from 2.1.0 to 2.2.0 #79
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: "Check Format" | |
| on: | |
| push: | |
| branches: | |
| - all | |
| pull_request: { } | |
| jobs: | |
| ruff: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: "Ruff format check" | |
| run: | | |
| uv run ruff format --check . | |
| - name: "Ruff import sorting check" | |
| run: | | |
| uv run ruff check . |