ci lint: Allow ShellCheck to test source-d scripts.

As the scripts 'utils/run-tests.sh' and 'utils/setup_test_container.sh'
use some scripts as function libraries, this change forces shellcheck to
also verify those scripts.
This commit is contained in:
Rafael Guterres Jeffman
2024-06-29 14:50:04 +00:00
committed by Thomas Woerner
parent 480c83f504
commit 785681f100
2 changed files with 6 additions and 1 deletions

View File

@@ -88,3 +88,5 @@ jobs:
fetch-depth: 1
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
env:
SHELLCHECK_OPTS: -x

View File

@@ -54,4 +54,7 @@ repos:
name: ShellCheck
language: system
entry: shellcheck
files: \.sh$
args: ['-x']
files: >
\.sh$
utils/sh*$