Skip to content

Update aioredlock to support redis>=5.0.0 #127

Update aioredlock to support redis>=5.0.0

Update aioredlock to support redis>=5.0.0 #127

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- 3.9
- "3.10"
- "3.11"
- "3.12"
services:
redis:
image: redis
ports:
- 6379:6379
options: --entrypoint redis-server
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test,cicd,package]
- name: Check syntax
run: |
make syntax
- name: Unit tests
run: |
make ut
- name: Acceptance tests
run: |
make acceptance
- name: Code coverage
run: |
make coverage