From 233537f905a697d610b56470f618f9a4b67b570b Mon Sep 17 00:00:00 2001 From: Vladimir Ischenko Date: Tue, 21 Jan 2025 18:05:26 +0300 Subject: [PATCH] Test linters for OCI Docker --- .github/workflows/ci-oci-docker-install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-oci-docker-install.yml b/.github/workflows/ci-oci-docker-install.yml index b0e5c3ec7a..3ba5bfebaf 100644 --- a/.github/workflows/ci-oci-docker-install.yml +++ b/.github/workflows/ci-oci-docker-install.yml @@ -93,7 +93,7 @@ jobs: run: | set -eux sudo apt-get install -y shellcheck - find install/docker install/common -type f -name "*.sh" | cat - <(echo "install/OneClickInstall/install-Docker.sh") \ + find install/docker -type f -name "*.sh" | cat - <(echo "install/OneClickInstall/install-Docker.sh") \ | xargs shellcheck --exclude="$(awk '!/^#|^$/ {print $1}' tests/lint/sc_ignore | paste -sd ",")" --severity=warning | tee sc_output awk '/\(warning\):/ {w++} /\(error\):/ {e++} END {if (w+e) printf "::warning ::ShellCheck detected %d warnings and %d errors\n", w+0, e+0}' sc_output