We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0191160 commit b791f4fCopy full SHA for b791f4f
.github/workflows/test_end_to_end.yml
@@ -90,6 +90,11 @@ jobs:
90
fi
91
docker ps -a --filter name=verify --format "Container: {{.Names}} Status: {{.Status}}"
92
docker logs integration-verify-1 || true
93
+ EXIT_CODE=$(docker inspect --format='{{.State.ExitCode}}' integration-verify-1)
94
+ if [ "$EXIT_CODE" -ne 0 ]; then
95
+ echo "Container exited with code $EXIT_CODE"
96
+ exit $EXIT_CODE
97
+ fi
98
99
- name: Shutdown remaining services
100
run: |
0 commit comments