File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 77env :
88 HONEYCOMB_WRITEKEY : 7f3c63a70eecc61d635917de46bea4e6
99 HONEYCOMB_DATASET : litmus tests
10+ SHELLCHECK_OPTS : ' -e SC1090 -e SC1091'
1011
1112jobs :
1213 setup_matrix :
@@ -120,7 +121,19 @@ jobs:
120121 - name : Run Static & Syntax Tests
121122 run : |
122123 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+
124125 - name : Run parallel_spec tests
125126 run : |
126127 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