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 ea69409 commit 5129976Copy full SHA for 5129976
.github/workflows/basic-qa.yml
@@ -77,3 +77,21 @@ jobs:
77
# yamllint disable-line rule:line-length
78
if: ${{ steps.spellcheck.outputs.success == false && steps.spellcheck.outputs.number_of_issues != 11 && steps.spellcheck.outputs.number_of_files_with_issues != 5}}
79
run: exit 1
80
+
81
+ shellcheck:
82
+ name: 'ShellCheck'
83
+ runs-on: ubuntu-latest
84
85
+ steps:
86
+ - name: Checkout code
87
+ uses: actions/checkout@v4
88
89
+ - name: Set up problem matcher
90
+ uses: lumaxis/shellcheck-problem-matchers@v2
91
+ with:
92
+ format: gcc
93
94
+ - name: Run ShellCheck
95
+ uses: ludeeus/[email protected]
96
97
.shellcheckrc
@@ -0,0 +1,8 @@
1
+shell=bash
2
+color=always
3
4
+external-sources=false
5
+source-path=/build
6
7
+# Turn on all checks.
8
+enable=all
0 commit comments