From 04ae5d8662b1f9309468e2f5a6ec596ff06aed24 Mon Sep 17 00:00:00 2001 From: Elton Cardoso do Nascimento <43186596+EltonCN@users.noreply.github.com> Date: Sun, 1 Dec 2024 17:48:37 -0300 Subject: [PATCH] Test: fix Redis port --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f0ac788..37a2483 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,9 +27,12 @@ jobs: --health-interval 10s --health-timeout 5s --health-retries 5 + ports: + # Maps port 6379 on service container to the host + - 6379:6379 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2