From 1b9006a522ae3067b232864d0e31ea66a4fb9618 Mon Sep 17 00:00:00 2001 From: Juan Calderon-Perez <835733+gaby@users.noreply.github.com> Date: Fri, 2 Aug 2024 09:11:29 -0400 Subject: [PATCH] Add support for valkey --- .github/workflows/build.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 960172b..2abffcf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,16 +9,18 @@ jobs: strategy: matrix: go-version: [1.20.x, 1.21.x, 1.22.x] - redis-version: [6.x, 7.x] + db-version: [6.x, 7.x] + distribution: [redis, valkey] runs-on: ubuntu-latest steps: - - name: Start Redis + - name: Start database uses: shogo82148/actions-setup-redis@v1 with: - redis-version: ${{ matrix.redis-version }} + db-version: ${{ matrix.db-version }} + distribution: ${{ matrix.distribution }} auto-start: "true" - - name: Wait for Redis to Start + - name: Wait for database to Start run: sleep 10 - name: Fetch Repository