Skip to content

chore: bump redis from 5.1.0 to 5.1.1 #583

chore: bump redis from 5.1.0 to 5.1.1

chore: bump redis from 5.1.0 to 5.1.1 #583

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test using pytest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: '.python-version'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --dev
- name: Run tests
run: pipenv run pytest