diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 6ebfe76..8360cf0 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -15,6 +15,7 @@ jobs: postgres-version: ["9.6", "10", "11", "12"] django-version: ["2.1", "2.2", "3.0", "3.1", "3.2"] clickhouse-version: ["latest"] + redis-version: ["latest"] services: postgres: @@ -33,6 +34,11 @@ jobs: ports: - 8123:8123 + redis: + image: redis:${{ matrix.clickhouse-version }} + ports: + - 6379:6379 + steps: - uses: actions/checkout@v2