From cfceafb2b22c905c597e3840fc1eba97ac63a3ba Mon Sep 17 00:00:00 2001 From: M1ha Date: Wed, 7 Jul 2021 17:45:56 +0500 Subject: [PATCH] Added redis service --- .github/workflows/python-tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) 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