diff --git a/.github/workflows/check-shell-task.yml b/.github/workflows/check-shell-task.yml index ea5469ff..f5294db4 100644 --- a/.github/workflows/check-shell-task.yml +++ b/.github/workflows/check-shell-task.yml @@ -125,6 +125,8 @@ jobs: continue-on-error: ${{ matrix.configuration.continue-on-error }} with: linters: gcc + # Due to a quirk of the "liskin/gh-problem-matcher-wrap" action, the entire command must be on a single line + # (instead of being broken into multiple lines for readability). run: task --silent shell:check SCRIPT_PATH="${{ matrix.script }}" SHELLCHECK_FORMAT=${{ matrix.configuration.format }} formatting: diff --git a/workflow-templates/check-shell-task.yml b/workflow-templates/check-shell-task.yml index 29fb5a51..bf73ca96 100644 --- a/workflow-templates/check-shell-task.yml +++ b/workflow-templates/check-shell-task.yml @@ -126,6 +126,8 @@ jobs: continue-on-error: ${{ matrix.configuration.continue-on-error }} with: linters: gcc + # Due to a quirk of the "liskin/gh-problem-matcher-wrap" action, the entire command must be on a single line + # (instead of being broken into multiple lines for readability). run: task --silent shell:check SCRIPT_PATH="${{ matrix.script }}" SHELLCHECK_FORMAT=${{ matrix.configuration.format }} formatting: