We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6564d42 commit edced38Copy full SHA for edced38
.github/workflows/pact-verify.yml
@@ -77,7 +77,9 @@ jobs:
77
run: ls -la tmp/pacts/
78
79
- if: inputs.pact_artifact != ''
80
- run: bundle exec rake pact:verify:at[tmp/pacts/${{ inputs.pact_artifact_file_to_verify }}]
+ run: |
81
+ # shellcheck disable=SC2102
82
+ bundle exec rake pact:verify:at[tmp/pacts/${{ inputs.pact_artifact_file_to_verify }}]
83
env:
84
RAILS_ENV: test
85
TEST_DATABASE_URL: ${{ steps.setup-mysql.outputs.db-url }}
0 commit comments