Added redis service

This commit is contained in:
M1ha 2021-07-07 17:45:56 +05:00
parent 12a749fb95
commit cfceafb2b2

View File

@ -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