From 30f14820c64cda94fbcbbcdb604b59949a427364 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20S=C3=B3jko?= Date: Thu, 4 May 2023 12:20:37 +0200 Subject: [PATCH] feat: add cache type to e2e test suite --- .github/workflows/common-e2e.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/common-e2e.yml b/.github/workflows/common-e2e.yml index 0027d7aa7..b5b70ccf0 100644 --- a/.github/workflows/common-e2e.yml +++ b/.github/workflows/common-e2e.yml @@ -22,6 +22,7 @@ jobs: strategy: matrix: database: [ "mysql", "sqlite" ] + cache: [ "redis", "memory" ] runs-on: ubuntu-latest @@ -44,6 +45,7 @@ jobs: run: docker compose -f docker-compose.ci.yml up -d env: DB_TYPE: ${{ matrix.database }} + CACHE_TYPE: ${{ matrix.cache }} - name: Wait for server to start run: docker/is-available.sh http://localhost:3123 $(pwd)/logs