Skip to content

Commit 597edcf

Browse files
authored
[CI] Add shellcheck lint job (#473)
1 parent 021ba8b commit 597edcf

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/lint.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,14 @@ jobs:
1919
run: python3 -m pip install flake8
2020
- name: Run flake8
2121
run: python3 -m flake8 .
22+
23+
shell-lint:
24+
runs-on: ubuntu-24.04
25+
steps:
26+
- uses: actions/checkout@v4
27+
- name: Install shellcheck
28+
run: |
29+
sudo apt-get update
30+
sudo apt-get install -y shellcheck
31+
- name: Run shellcheck
32+
run: shellcheck scripts/*.sh

0 commit comments

Comments
 (0)