Skip to content

Commit cad0207

Browse files
Lint shell scripts with shellcheck
1 parent 35dab99 commit cad0207

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: .github/workflows/ci.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,12 @@ jobs:
6262
# to be missing after the checkout
6363
run: |
6464
apt-get -qq -y update
65-
apt-get -qq -y install git
65+
apt-get -qq -y install git shellcheck
6666
git init .
67+
- name: Lint with Shellcheck
68+
run: |
69+
shellcheck tests/*.sh
70+
shellcheck scripts/*.sh
6771
- name: Install dependencies
6872
run: |
6973
python -m pip install --upgrade --no-cache-dir pip setuptools wheel

0 commit comments

Comments
 (0)