From 3e6bafe4f8773bc9073eee7c94261da102940a40 Mon Sep 17 00:00:00 2001 From: J0sueTM Date: Wed, 3 Jul 2024 16:37:50 -0300 Subject: [PATCH] feat: raise redis service before tests --- .github/workflows/tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c63ebc7..352b2e2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,6 +12,12 @@ on: jobs: test: runs-on: ubuntu-latest + services: + redis: + image: "redis:7" + ports: + - 6379:6379 + options: --rm steps: - name: Checkout code