Unpin redis #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
PIP_BREAK_SYSTEM_PACKAGES: "1" | |
jobs: | |
test: | |
strategy: | |
matrix: | |
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/redis-github-action@1.1.0 | |
- name: Install redis package | |
run: python3 -m pip install redis==${{ matrix.redis-package-version }} | |
- name: Run test | |
run: python3 -m unittest discover python/tests/ |