From afc4a441ad6833b8408e974467d28c2c01741b2a Mon Sep 17 00:00:00 2001 From: zunda Date: Tue, 28 Oct 2025 00:51:30 +0900 Subject: [PATCH] support test for multi valkey version Signed-off-by: zunda --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 943ca68e..94fba98f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,12 +17,13 @@ jobs: timeout-minutes: 15 strategy: matrix: - image: ["swift:6.1", "swift:6.2"] + swift: ["swift:6.1", "swift:6.2"] + valkey: ["valkey:8.0", "valkey:8.1", "valkey:9.0"] container: - image: ${{ matrix.image }} + image: ${{ matrix.swift }} services: valkey: - image: valkey/valkey:8.0 + image: valkey/${{ matrix.valkey }} ports: - 6379:6379 options: --entrypoint valkey-server