Skip to content

build(deps): update uv.lock #12

build(deps): update uv.lock

build(deps): update uv.lock #12

Workflow file for this run

name: ci/gh-actions/ruff
on: [ push, pull_request ]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff
run: ruff check --select I --no-fix .
- name: Format
run: ruff format --check .