From 4992801b10de1989194939b6381bbd042fd98251 Mon Sep 17 00:00:00 2001 From: Temirkhan Myrzamadi Date: Wed, 1 Jul 2020 20:42:27 +0600 Subject: [PATCH] Setup redis in CI --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c3af7b2..8b859037 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,9 @@ jobs: override: true components: rustfmt, clippy + - name: Setup redis + run: sudo apt install redis-server && redis-server + - name: stable/beta build uses: actions-rs/cargo@v1 if: matrix.rust == 'stable' || matrix.rust == 'beta'