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 4d6f6d0 commit c68ab6dCopy full SHA for c68ab6d
1 file changed
.github/workflows/test.yaml
@@ -50,9 +50,9 @@ jobs:
50
- name: Install System Dependencies
51
run: |
52
if [ "$(id -u)" = "0" ]; then
53
- apt-get update && apt-get install -y build-essential git netcat-openbsd
+ apt-get update && apt-get install -y build-essential git netcat-openbsd docker-ce-cli
54
else
55
- sudo apt-get update && sudo apt-get install -y build-essential git netcat-openbsd
+ sudo apt-get update && sudo apt-get install -y build-essential git netcat-openbsd docker-ce-cli
56
fi
57
58
- name: Cache Ruby Gems
@@ -72,7 +72,6 @@ jobs:
72
- name: Wait for RabbitMQ
73
74
echo "Waiting for RabbitMQ to start at hostname 'rabbitmq'..."
75
- # Fix: Use the service name 'rabbitmq' instead of 'localhost'
76
for i in {1..30}; do
77
if nc -z rabbitmq 5672; then
78
echo "RabbitMQ is ready!"
0 commit comments