Merge pull request #5 from tair-opensource/add-string #14
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: 7.0 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test-with-redis-7-0: | |
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.0 | |
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.0.0 --show-failed |