Skip to content

bump ruff to 0.11.11 #639

bump ruff to 0.11.11

bump ruff to 0.11.11 #639

Workflow file for this run

name: check
on:
push:
branches: [ master ]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: prepare
uses: actions/setup-python@v5
with:
python-version: ">=3.13"
- name: install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: install project dependencies
run: uv sync --all-extras --dev
- name: test
run: PYTHONPATH=. uv run pytest
- name: lint
run: uv run pre-commit run --all-files