We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63a5666 commit 14f79c4Copy full SHA for 14f79c4
2 files changed
.github/workflows/python-lint.yml
.github/workflows/shell-lint.yml
@@ -0,0 +1,24 @@
1
+name: Shell Lint
2
+
3
+on:
4
+ workflow_call:
5
+ push:
6
+ paths:
7
+ - '**/*.sh'
8
+ - '.github/workflows/shell-lint.yml'
9
+ pull_request:
10
11
12
13
14
+jobs:
15
+ shell-lint:
16
+ runs-on: ubuntu-24.04
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - name: Install shellcheck
20
+ run: |
21
+ sudo apt-get update
22
+ sudo apt-get install -y shellcheck
23
+ - name: Run shellcheck
24
+ run: shellcheck scripts/*.sh
0 commit comments