From f2c834e881c2b11e2ebf3f65072a751ede916d9e Mon Sep 17 00:00:00 2001 From: ChillerDragon Date: Wed, 2 Dec 2020 14:56:12 +0100 Subject: [PATCH] Add shellcheck to ci --- .github/workflows/style.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 35b411491..54c9c6208 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -19,7 +19,7 @@ jobs: - name: Prepare run: | sudo apt-get update -y - sudo apt-get install clang-format imagemagick ddnet-tools -y + sudo apt-get install clang-format imagemagick ddnet-tools shellcheck -y - name: Check style run: | clang-format -version @@ -39,3 +39,5 @@ jobs: - name: Check if images are dilated run: | scripts/check_dilate.sh release data + - name: Shellcheck + run: find . -name "*.sh" | xargs shellcheck