File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 77
77
# yamllint disable-line rule:line-length
78
78
if : ${{ steps.spellcheck.outputs.success == false && steps.spellcheck.outputs.number_of_issues != 11 && steps.spellcheck.outputs.number_of_files_with_issues != 5}}
79
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/action-shellcheck@2.0.0
96
+ with :
97
+ format : gcc
Original file line number Diff line number Diff line change
1
+ shell =bash
2
+ color =always
3
+
4
+ external-sources =false
5
+ source-path =/build
6
+
7
+ # Turn on all checks.
8
+ enable =all
You can’t perform that action at this time.
0 commit comments