From 58264bedee8ffcdfc042472dd886f0b8a3877b93 Mon Sep 17 00:00:00 2001 From: John Bampton Date: Fri, 5 Dec 2025 23:21:22 +1000 Subject: [PATCH] gha: run pre-commit with `--color=always` Minor enhancement for the GHA CI. refs https://github.com/apache/cloudstack/pull/11977 --- .github/workflows/lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 059efac4d..d94ab1f42 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -24,9 +24,9 @@ jobs: path: ~/.cache/pre-commit key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }} - name: Run pre-commit - run: pre-commit run --all-files + run: pre-commit run --color=always --all-files - name: Run manual pre-commit hooks - run: pre-commit run --all-files --hook-stage manual + run: pre-commit run --color=always --all-files --hook-stage manual ls-lint: name: Run ls-lint runs-on: ubuntu-latest