Skip to content

Bump pre-commit from 4.5.0 to 4.5.1 #842

Bump pre-commit from 4.5.0 to 4.5.1

Bump pre-commit from 4.5.0 to 4.5.1 #842

Workflow file for this run

name: Lint
on:
pull_request:
types:
- "opened"
- "synchronize"
push:
branches:
- "main"
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10" ]
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install dependencies
run: |
uv sync --all-extras --dev
- name: Lint
run: |
uv run pre-commit run --all-files --show-diff-on-failure