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 3947674 commit 06aedfaCopy full SHA for 06aedfa
.github/workflows/test.yaml
@@ -54,6 +54,19 @@ jobs:
54
- 5672:5672/tcp # AMQP standard port
55
- 15672:15672/tcp # Management: HTTP, CLI
56
57
+ redis:
58
+ # Docker Hub image
59
+ image: redis
60
+ # Set health checks to wait until redis has started
61
+ options: >-
62
+ --name "redis"
63
+ --health-cmd "redis-cli ping"
64
+ --health-interval 10s
65
+ --health-timeout 5s
66
+ --health-retries 5
67
+ ports:
68
+ - 6379:6379/tcp
69
+
70
env:
71
COLUMNS: '120'
72
0 commit comments