Skip to content

Commit

Permalink
fixup! Adapt to redis 3.*
Browse files Browse the repository at this point in the history
  • Loading branch information
em92 committed Aug 10, 2024
1 parent 9e6b63c commit 32c483e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,19 @@ on:
branches: [ master ]

jobs:
build:
test:

strategy:
matrix:
redis-version: ["2.*", "3.*", "4.*", "5.*"]
redis-package-version: ["2.*", "3.*", "4.*", "5.*"]
os: ["ubuntu-24.04", "ubuntu-22.04", "ubuntu-20.04"]

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Start Redis
uses: superchargejs/[email protected]
- name: Install redis package
run: sudo python3 -m pip install redis==${{ matrix.redis-version }}
run: sudo python3 -m pip install redis==${{ matrix.redis-package-version }}
- name: Run test
run: python3 -m unittest discover python/tests/

0 comments on commit 32c483e

Please sign in to comment.