Skip to content

Commit 7353061

Browse files
author
github-actions
committed
Workflow sync
1 parent 8611993 commit 7353061

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

Diff for: .github/workflows/spec.yml

+14-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
env:
88
HONEYCOMB_WRITEKEY: 7f3c63a70eecc61d635917de46bea4e6
99
HONEYCOMB_DATASET: litmus tests
10+
SHELLCHECK_OPTS: '-e SC1090 -e SC1091'
1011

1112
jobs:
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+

0 commit comments

Comments
 (0)