diff --git a/.github/workflows/ci-oci-install.yml b/.github/workflows/ci-oci-install.yml index c33029413b8..951fdae2a35 100644 --- a/.github/workflows/ci-oci-install.yml +++ b/.github/workflows/ci-oci-install.yml @@ -68,9 +68,9 @@ jobs: run: | set -eux sudo apt-get install -y shellcheck - EXCLUDE_CODES="SC1090,SC2034,SC2154,SC2155" + # EXCLUDE_CODES="SC1090,SC2034,SC2154,SC2155" find install/OneClickInstall tests -type f -name "*.sh" ! -path "install/OneClickInstall/install-Docker.sh" \ - | xargs shellcheck --exclude="$EXCLUDE_CODES" --severity=warning | tee shellcheck_output + | xargs shellcheck --severity=warning | tee shellcheck_output awk ' /\(warning\):/ { warnings++ } /\(error\):/ { errors++ }