Skip to content

build(deps-dev): bump twine from 6.2.0 to 7.0.0 #587

build(deps-dev): bump twine from 6.2.0 to 7.0.0

build(deps-dev): bump twine from 6.2.0 to 7.0.0 #587

Workflow file for this run

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 }}