Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix: Fixed issue adding Go 1.22.x and 1.23.x and drop Go 1.19.x #3239

Closed
wants to merge 12 commits into from
11 changes: 5 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.19.x, 1.20.x, 1.21.x]
go-version: [1.22.x, 1.23.x]

services:
redis:
@@ -56,10 +56,9 @@ jobs:
- "7.2.6"
- "6.2.16"
go-version:
- "1.19.x"
- "1.20.x"
- "1.21.x"

- "1.22.x"
- "1.23.x"

steps:
- name: Set up ${{ matrix.go-version }}
uses: actions/setup-go@v5
@@ -73,7 +72,7 @@ jobs:
- name: Set up Docker Compose environment
run: |
docker compose --profile all up -d

- name: Run tests
env:
USE_CONTAINERIZED_REDIS: "true"
2 changes: 1 addition & 1 deletion .github/workflows/doctests.yaml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [ "1.18", "1.19", "1.20", "1.21" ]
go-version: [ "1.22", "1.23" ]

steps:
- name: Set up ${{ matrix.go-version }}
2 changes: 1 addition & 1 deletion .github/workflows/test-redis-enterprise.yml
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.21.x]
go-version: ["1.21.x"]
re-build: ["7.4.2-54"]

steps:
Loading