Skip to content

ci(pre-commit): fix wrong pre-commit command #14

ci(pre-commit): fix wrong pre-commit command

ci(pre-commit): fix wrong pre-commit command #14

Workflow file for this run

name: pre-commit
on:
pull_request:
push:
branches: [main]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
cache-dependency-glob: 'uv.lock'
- uses: actions/setup-python@v5
with:
python-version-file: '.python-version'
- name: Install deps
run: uv sync --all-extras
- name: Pre-commit check
env:
SKIP: generate-config-schemas
run: uv run pre-commit run -a