Skip to content

Commit 7de5256

Browse files
authored
.github: add shellcheck workflow (#51)
Make CI lint shell scripts with shellcheck [1], following up from the previous commit [2]. [1] https://github.com/koalaman/shellcheck [2] f2b7edd, 2023-08-24, "bin(run-tests, run): resolve shellcheck complaints"
1 parent f2b7edd commit 7de5256

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/shellcheck.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: shellcheck
2+
3+
on: [push, pull_request, workflow_dispatch]
4+
5+
jobs:
6+
shellcheck:
7+
name: Run shellcheck on scripts
8+
runs-on: ubuntu-22.04
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
12+
13+
- name: Run shellcheck
14+
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38

0 commit comments

Comments
 (0)