fix(ci): only run pre-commit

This commit is contained in:
Andy Lee
2025-09-15 19:57:56 -07:00
parent b1daf021e0
commit 07e4f176e1

View File

@@ -26,9 +26,13 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Install ruff
- name: Install pre-commit
run: |
uv tool install ruff
uv pip install --system pre-commit
- name: Run pre-commit hooks (all files)
run: |
pre-commit run --all-files --show-diff-on-failure
- name: Run ruff check
run: |