Skip to content

Commit

Permalink
tests: fix shellcheck overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Feb 12, 2025
1 parent cda5dd4 commit cb3e518
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/schema-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit cb3e518

Please sign in to comment.