We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb3efce commit 1db76efCopy full SHA for 1db76ef
.github/workflows/test.yml
@@ -46,12 +46,20 @@ jobs:
46
--health-retries 5
47
ports:
48
- 5432:5432
49
+ redis:
50
+ image: redis
51
+ options: >-
52
+ --health-cmd "redis-cli ping"
53
+ --health-interval 10s
54
+ --health-timeout 5s
55
+ --health-retries 5
56
env:
57
POSTGRES_DB: chanx_test_db
58
POSTGRES_USER: chanx_test_user
59
POSTGRES_PASSWORD: chanx_test_pass
60
POSTGRES_HOST: localhost
61
POSTGRES_PORT: 5432
62
+ REDIS_HOST: redis://localhost:6379
63
steps:
64
- name: Dump GitHub context
65
0 commit comments