fix(ci): run with lint only

This commit is contained in:
Andy Lee
2025-09-15 21:55:19 -07:00
parent 9c400acd7e
commit 9dbd0c64cc

View File

@@ -27,13 +27,9 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Sync lint tools via uv groups (tools only)
- name: Run pre-commit with only lint group (no project deps)
run: |
uv sync --only-group lint
- name: Run pre-commit hooks (all files)
run: |
uv run pre-commit run --all-files --show-diff-on-failure
uv run --only-group lint pre-commit run --all-files --show-diff-on-failure
build: