Skip to content

Commit edced38

Browse files
committedFeb 24, 2025··
Shellcheck Ignore SC2102
1 parent 6564d42 commit edced38

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎.github/workflows/pact-verify.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ jobs:
7777
run: ls -la tmp/pacts/
7878

7979
- if: inputs.pact_artifact != ''
80-
run: bundle exec rake pact:verify:at[tmp/pacts/${{ inputs.pact_artifact_file_to_verify }}]
80+
run: |
81+
# shellcheck disable=SC2102
82+
bundle exec rake pact:verify:at[tmp/pacts/${{ inputs.pact_artifact_file_to_verify }}]
8183
env:
8284
RAILS_ENV: test
8385
TEST_DATABASE_URL: ${{ steps.setup-mysql.outputs.db-url }}

0 commit comments

Comments
 (0)
Please sign in to comment.