build(deps-dev): bump twine from 6.2.0 to 7.0.0 #587
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: | |
| # the "black"/"isort" matrix values are kept only so the required status check names | |
| # ("format (black)", "format (isort)") stay stable; both now run ruff under the hood. | |
| # Renaming them would require updating the branch protection required-checks list too. | |
| name: "format (${{ matrix.tool }})" | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - tool: black | |
| command: ruff format --check . | |
| - tool: isort | |
| command: ruff check --select I . | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v9.0.0 | |
| with: | |
| python-version: "3.14" | |
| - name: Install dependencies | |
| run: uv sync --group linting | |
| - name: ${{ matrix.tool }} Code Formatter | |
| run: uv run ${{ matrix.command }} |