From dc1bf75fe79ed08dd309c6af8802c49cc8b810e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Wed, 16 Apr 2025 20:39:26 +0200 Subject: [PATCH] chore: simplify redis version in matrix --- .github/workflows/test-redis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-redis.yml b/.github/workflows/test-redis.yml index b542d46a..fa2d89e3 100644 --- a/.github/workflows/test-redis.yml +++ b/.github/workflows/test-redis.yml @@ -18,8 +18,8 @@ jobs: - 1.23.x - 1.24.x redis: - - '6.x' - - '7.x' + - '6' + - '7' steps: - name: Fetch Repository uses: actions/checkout@v4 @@ -45,5 +45,5 @@ jobs: - name: Run Test env: - TEST_REDIS_IMAGE: "docker.io/redis:7" + TEST_REDIS_IMAGE: "docker.io/redis:${{ matrix.redis }}" run: cd ./redis && go test ./... -v -race