From 296f70a977f85a22495be69e8014d275b6517300 Mon Sep 17 00:00:00 2001 From: Julik Tarkhanov Date: Wed, 28 Feb 2024 20:22:33 +0100 Subject: [PATCH] Add Redis in CI --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 307ff2c..e66c1d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,6 +50,11 @@ jobs: options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 ports: - 5432:5432 + redis: + image: redis + options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5 + ports: + - 6379:6379 steps: - name: Checkout uses: actions/checkout@v4