From bda940bb2dc121ffa7d64ed0c40339b48d00e15b Mon Sep 17 00:00:00 2001 From: Alphonse Paix Date: Fri, 5 Sep 2025 19:23:11 +0200 Subject: [PATCH] Update workflow to include redis --- .github/workflows/general.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/general.yml b/.github/workflows/general.yml index 5398d68..ea6ea7a 100644 --- a/.github/workflows/general.yml +++ b/.github/workflows/general.yml @@ -46,6 +46,10 @@ jobs: # Opens tcp port 5432 on the host and service container ports: - 5432:5432 + redis: + image: redis:7 + ports: + - 6379:6379 steps: # Downloads a copy of the code in your repository before running CI tests - name: Check out repository code @@ -128,6 +132,10 @@ jobs: POSTGRES_DB: postgres ports: - 5432:5432 + redis: + image: redis:7 + ports: + - 6379:6379 steps: - uses: actions/checkout@v4 - name: Install the Rust toolchain