From 9dbd0c64cc4df829706109bbb4cbbc1df607d03e Mon Sep 17 00:00:00 2001 From: Andy Lee Date: Mon, 15 Sep 2025 21:55:19 -0700 Subject: [PATCH] fix(ci): run with lint only --- .github/workflows/build-reusable.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-reusable.yml b/.github/workflows/build-reusable.yml index 69d8932..73d0188 100644 --- a/.github/workflows/build-reusable.yml +++ b/.github/workflows/build-reusable.yml @@ -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: