From e1581f6dfddc5181f02c8c2be10b89bc6eb41e0e Mon Sep 17 00:00:00 2001 From: Jarek Radosz Date: Wed, 8 Sep 2021 14:01:37 +0200 Subject: [PATCH] DEV: Use discourse image redis in CI (#14280) --- .github/workflows/tests.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1f47223bdf4..21234f82adb 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,7 +28,6 @@ jobs: build_type: [backend, frontend, annotations] target: [core, plugins] postgres: ["13"] - redis: ["6.x"] exclude: - build_type: annotations target: plugins @@ -59,10 +58,9 @@ jobs: git config --global user.email "ci@ci.invalid" git config --global user.name "Discourse CI" - - name: Setup redis - uses: shogo82148/actions-setup-redis@v1 - with: - redis-version: ${{ matrix.redis }} + - name: Start redis + run: | + redis-server /etc/redis/redis.conf & - name: Bundler cache uses: actions/cache@v2