From 178443e0f41030ad26d77cedf493e477faf2eccb Mon Sep 17 00:00:00 2001 From: Edward Louth Date: Thu, 10 Aug 2023 12:11:31 +0100 Subject: [PATCH] Add redis service to ci (#562) --- .github/workflows/graph-ci.yml | 6 ++++++ .github/workflows/integration-fivetran-ci.yml | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/graph-ci.yml b/.github/workflows/graph-ci.yml index 3f0073769..038aed570 100644 --- a/.github/workflows/graph-ci.yml +++ b/.github/workflows/graph-ci.yml @@ -53,6 +53,7 @@ jobs: - 5432:5432 # needed because the postgres container does not provide a healthcheck options: --health-cmd pg_isready --health-interval 2s --health-timeout 5s --health-retries 15 + the_guide: image: ghcr.io/grai-io/grai-core/grai-server:latest env: @@ -70,6 +71,11 @@ jobs: --health-interval 2s --health-retries 10 --health-start-period 30s + redis: + image: redis/redis-stack:latest + ports: + - 6379:6379 + steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/integration-fivetran-ci.yml b/.github/workflows/integration-fivetran-ci.yml index 3734d316d..cc499634e 100755 --- a/.github/workflows/integration-fivetran-ci.yml +++ b/.github/workflows/integration-fivetran-ci.yml @@ -65,6 +65,10 @@ jobs: --health-interval 2s --health-retries 10 --health-start-period 30s + redis: + image: redis/redis-stack:latest + ports: + - 6379:6379 steps: - uses: actions/checkout@v3