We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5dfc29 commit e8ee169Copy full SHA for e8ee169
.github/workflows/pull_request.yaml
@@ -111,6 +111,13 @@ jobs:
111
# echo "Waiting for Redis to be ready...";
112
# sleep 5;
113
# done
114
+
115
+ - name: Wait for Redis
116
+ run: |
117
+ until docker exec $(docker ps -qf "name=redis") redis-cli ping; do
118
+ echo "Waiting for Redis to be ready...";
119
+ sleep 5;
120
+ done
121
122
- name: Wait for Kafka
123
run: |
config/test.json
@@ -1,6 +1,6 @@
1
{
2
"redis": {
3
- "host": "redis",
+ "host": "localhost",
4
"port": 6379,
5
"username": "",
6
"password": "",
0 commit comments