We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 021ba8b commit 597edcfCopy full SHA for 597edcf
1 file changed
.github/workflows/lint.yml
@@ -19,3 +19,14 @@ jobs:
19
run: python3 -m pip install flake8
20
- name: Run flake8
21
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