Skip to content

chore(deps-dev): Bump ruff from 0.15.16 to 0.15.17 #436

chore(deps-dev): Bump ruff from 0.15.16 to 0.15.17

chore(deps-dev): Bump ruff from 0.15.16 to 0.15.17 #436

Workflow file for this run

name: ruff
on:
pull_request:
branches: [ "main" ]
permissions:
contents: read
pull-requests: read
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: audit
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Set up uv
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
- name: Run uv sync
run: uv sync
- name: Run ruff
run: uv run ruff check --output-format=github .
- name: Run ruff formatter
run: uv run ruff format --diff .