Add shellcheck to ci

This commit is contained in:
ChillerDragon 2020-12-02 14:56:12 +01:00 committed by def
parent 1dcc1e4026
commit f2c834e881

View file

@ -19,7 +19,7 @@ jobs:
- name: Prepare - name: Prepare
run: | run: |
sudo apt-get update -y 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 - name: Check style
run: | run: |
clang-format -version clang-format -version
@ -39,3 +39,5 @@ jobs:
- name: Check if images are dilated - name: Check if images are dilated
run: | run: |
scripts/check_dilate.sh release data scripts/check_dilate.sh release data
- name: Shellcheck
run: find . -name "*.sh" | xargs shellcheck