We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbb32d3 commit 502c08cCopy full SHA for 502c08c
.github/workflows/shellcheck.yml
@@ -0,0 +1,20 @@
1
+---
2
+name: Shellcheck
3
+on: [push, pull_request]
4
+permissions:
5
+ contents: read
6
+
7
+jobs:
8
+ shellcheck:
9
+ name: Shellcheck
10
+ runs-on: ubuntu-latest
11
+ env:
12
+ LANG: C.UTF-8
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - name: Install shellcheck
17
+ run: sudo apt update && sudo apt install -y shellcheck && shellcheck --version
18
19
+ - name: Check shell scripts
20
+ run: shellcheck -x -P "SCRIPTDIR"/utils --severity=error testssl.sh
0 commit comments