Skip to content

Replace obsolete aioredis with redis-py #80

Replace obsolete aioredis with redis-py

Replace obsolete aioredis with redis-py #80

Workflow file for this run

name: Check code
on:
- push
- pull_request
jobs:
check:
strategy:
matrix:
python:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- run: sudo apt-get install redis
- run: make deps deps-dev
- run: make type
- run: make test
- run: make test-ext
- run: make lint
continue-on-error: ${{ contains(github.event.head_commit.message, 'WIP') }}