Skip to content

Commit da1a549

Browse files
committed
Update test workflow to use localhost for Redis, RabbitMQ, and pgsql connections
1 parent 2f6a9e9 commit da1a549

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,14 @@ jobs:
9393

9494
- name: Run tests
9595
env:
96-
REDIS_HOST: "redis"
96+
REDIS_HOST: "localhost"
9797
REDIS_PORT: "6379"
9898
REDIS_DB: "0"
9999
REDIS_PASSWORD: ""
100-
PG_DSN: "postgresql://testuser:testpass@postgres:5432/testdb"
100+
PG_DSN: "postgresql://testuser:testpass@localhost:5432/testdb"
101101
RABBITMQ_DIRECT: true
102102
RABBITMQ_MTLS: false
103-
RABBITMQ_HOST: "rabbitmq"
103+
RABBITMQ_HOST: "localhost"
104104
RABBITMQ_USERNAME: "guest"
105105
RABBITMQ_PASSWORD: "guest"
106106
RABBITMQ_PORT: "5552"

0 commit comments

Comments
 (0)