From cced9fe0d61947f2928d330979e4ef9a9c2a3b08 Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Tue, 23 Feb 2021 22:04:07 -0700 Subject: [PATCH] Specify exposed redis port in CI --- .github/workflows/test-suite.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test-suite.yaml b/.github/workflows/test-suite.yaml index 4bf0c5c..f448801 100644 --- a/.github/workflows/test-suite.yaml +++ b/.github/workflows/test-suite.yaml @@ -9,6 +9,8 @@ jobs: services: redis: image: redis:6.2 + ports: + - 6379:6379 options: --health-cmd "redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3 strategy: