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