Skip to content

Commit

Permalink
Test linting scripts without exclude codes
Browse files Browse the repository at this point in the history
  • Loading branch information
isboston committed Jan 17, 2025
1 parent 925cbbc commit acd1849
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-oci-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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++ }
Expand Down

0 comments on commit acd1849

Please sign in to comment.