We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f34aa60 commit b3ec3e9Copy full SHA for b3ec3e9
.github/workflows/go_app_pull_requests.yml
@@ -226,7 +226,11 @@ jobs:
226
fi
227
228
# Verify image is available
229
- docker images | grep integrations-testsuite || echo "Warning: integrations-testsuite image not found"
+ if ! docker images | grep -q integrations-testsuite; then
230
+ echo "Error: integrations-testsuite image not found after load/pull"
231
+ exit 1
232
+ fi
233
+ echo "✅ integrations-testsuite image verified"
234
# Cache custom Docker images (specified by caller)
235
- name: Cache custom Docker images
236
if: ${{ inputs.GO_TEST_INTEGRATION_ENABLED && inputs.DOCKER_CACHE_IMAGES != '' }}
0 commit comments