Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
Add support for valkey
Browse files Browse the repository at this point in the history
  • Loading branch information
gaby authored Aug 2, 2024
1 parent 24ab157 commit 1b9006a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1b9006a

Please sign in to comment.