From cb3e51831ee1915c49a808e549e10f96516fddc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 12 Feb 2025 19:28:22 +0100 Subject: [PATCH] tests: fix shellcheck overrides --- .github/workflows/schema-update.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/schema-update.yml b/.github/workflows/schema-update.yml index 860676c50fc8..589127131c1f 100644 --- a/.github/workflows/schema-update.yml +++ b/.github/workflows/schema-update.yml @@ -32,10 +32,14 @@ jobs: python-version: '3.13' - name: Install Python dependencies run: | - uv pip install --system $(sed -n 's/.*"\(weblate-schemas==\([^"]*\)\)".*/\1/p' pyproject.toml) # shellcheck: disable=SC2046 - uv pip install --system $(sed -n 's/.*"\(pre-commit==\([^"]*\)\)".*/\1/p' pyproject.toml # shellcheck: disable=SC2046) + # shellcheck disable=SC2046 + uv pip install --system $(sed -n 's/.*"\(weblate-schemas==\([^"]*\)\)".*/\1/p' pyproject.toml) + # shellcheck disable=SC2046 + uv pip install --system $(sed -n 's/.*"\(pre-commit==\([^"]*\)\)".*/\1/p' pyproject.toml) - run: make -C docs update-schemas - - run: pre-commit run --files $(git diff --name-only) # shellcheck: disable=SC2046 + - run: | + # shellcheck disable=SC2046 + pre-commit run --files $(git diff --name-only) continue-on-error: true - name: Update renovate branch if: github.ref != 'refs/heads/main'