Skip to content

feat: add support for geo #17

feat: add support for geo

feat: add support for geo #17

Workflow file for this run

name: 7.2
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-with-redis-7-2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: clone and build redis
run: |
sudo apt-get install git
git clone https://github.com/redis/redis
cd redis
git checkout 7.2
make -j
- name: start redis
run: |
./redis/src/redis-server &
- name: set up python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: install requirements
run: pip install -r requirements.txt
- name: run test
run: python redis_compatibility_test.py --testfile cts.json --specific-version 7.2.0 --show-failed