From 693d956f87fa54c750b26076fa234f0a192f1064 Mon Sep 17 00:00:00 2001 From: Rowan Seymour Date: Tue, 25 Oct 2022 10:21:32 -0500 Subject: [PATCH] Test against redis 6.2 and postgres 14 --- .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 f79fb902d..556fecd6b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,13 +3,13 @@ on: [push, pull_request] env: go-version: "1.19.x" postgis-version: "3.1" - redis-version: "5.0.6" jobs: test: name: Test strategy: matrix: - pg-version: ["12", "13"] + redis-version: ["5.0.6", "6.2"] + pg-version: ["13", "14"] runs-on: ubuntu-latest steps: - name: Checkout code @@ -18,7 +18,7 @@ jobs: - name: Install Redis uses: zhulik/redis-action@v1.0.0 with: - redis version: ${{ env.redis-version }} + redis version: ${{ matrix.redis-version }} - name: Install PostgreSQL uses: nyaruka/postgis-action@v2