build(deps-dev): bump hypothesis from 6.165.9 to 6.165.10 #289
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" | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: {} | |
| jobs: | |
| format: | |
| # Explicit name keeps the reported check as "format (black)" / "format (isort)", | |
| # which are pinned as required status checks on main - see matrix.include below. | |
| name: "format (${{ matrix.tool }})" | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| # Kept as separate tool labels (now both backed by ruff) so the required | |
| # status check names "format (black)" / "format (isort)" stay unchanged. | |
| # Renaming them requires updating the branch ruleset in the same change. | |
| include: | |
| - tool: black | |
| command: "ruff format --check ." | |
| - tool: isort | |
| command: "ruff check --select I ." | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v10.0.1 | |
| with: | |
| python-version: 3.14 | |
| - name: ${{ matrix.tool }} Code Formatter | |
| run: | | |
| uv run --group lint ${{ matrix.command }} |