File tree 1 file changed +14
-1
lines changed
1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 7
7
env :
8
8
HONEYCOMB_WRITEKEY : 7f3c63a70eecc61d635917de46bea4e6
9
9
HONEYCOMB_DATASET : litmus tests
10
+ SHELLCHECK_OPTS : ' -e SC1090 -e SC1091'
10
11
11
12
jobs :
12
13
setup_matrix :
@@ -120,7 +121,19 @@ jobs:
120
121
- name : Run Static & Syntax Tests
121
122
run : |
122
123
buildevents cmd $TRACE_ID $STEP_ID 'static_syntax_checks Puppet ${{ matrix.puppet_version }}, Ruby ${{ matrix.ruby_version }}' -- bundle exec rake syntax lint metadata_lint check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop
123
-
124
+
124
125
- name : Run parallel_spec tests
125
126
run : |
126
127
buildevents cmd $TRACE_ID $STEP_ID 'rake parallel_spec Puppet ${{ matrix.puppet_version }}, Ruby ${{ matrix.ruby_version }}' -- bundle exec rake parallel_spec
128
+ shellcheck :
129
+ name : Shellcheck
130
+ runs-on : ubuntu-latest
131
+ steps :
132
+ - uses : actions/checkout@v2
133
+ - name : Run ShellCheck
134
+ uses : ludeeus/action-shellcheck@master
135
+ with :
136
+ check_together : ' yes'
137
+
138
+
139
+
You can’t perform that action at this time.
0 commit comments