From 3030a70b6cb78f9dd3f6ecdb61b6834609153e1b Mon Sep 17 00:00:00 2001 From: Simon Prickett Date: Wed, 30 Mar 2022 09:54:05 +0100 Subject: [PATCH] Updated to use Redis Stack container. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c73e723..08b5c73 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,11 +74,11 @@ jobs: matrix: os: [ ubuntu-latest ] pyver: [ 3.6, 3.7, 3.8, 3.9, pypy3 ] - redismod: [ "preview" ] + redisstack: [ "latest" ] fail-fast: false services: redis: - image: redislabs/redismod:${{ matrix.redismod }} + image: redis/redis-stack:${{ matrix.redisstack }} ports: # Maps port 6379 on service container to the host - 6379:6379 @@ -134,7 +134,7 @@ jobs: #---------------------------------------------- - name: Install library run: poetry install --no-interaction - - name: Run unittests (redismod:${{ matrix.redismod }}, ${{ matrix.os }}) + - name: Run unittests (redisstack:${{ matrix.redisstack }}, ${{ matrix.os }}) env: REDIS_OM_URL: "redis://localhost:6379?decode_responses=True" run: |