We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4486f4 commit bade7b4Copy full SHA for bade7b4
.github/workflows/docker-latest.yml
@@ -64,14 +64,12 @@ jobs:
64
65
-
66
name: Start integration test components
67
- run: |
68
- docker compose -f ./integration-tests/docker-compose.yml up --wait
69
- status="$?"
70
- if [[ "$status" != 0 ]]; then
71
- echo "Error"
72
- docker compose -f ./integration-tests/docker-compose.yml logs
73
- exit "$status"
74
- fi
+ run: docker compose -f ./integration-tests/docker-compose.yml up --wait
+
+ -
+ name: Show integration test component logs on failure
+ if: failure()
+ run: docker compose -f ./integration-tests/docker-compose.yml logs
75
76
77
name: Run integration tests
0 commit comments