From 92cf6406503feb0ec505da567b66ee3beb19ebe4 Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Sun, 7 Sep 2025 20:42:11 +0300 Subject: [PATCH] ci: set REDIS_URL --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74815186..4bc81797 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,8 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Show Redis port + run: echo "Redis on localhost:${{ job.services.redis.ports['6379'] }}" - name: Install dependencies run: | sudo apt-get update && sudo apt-get install -y \ @@ -47,4 +49,4 @@ jobs: run: | cargo test -p rocksky-tracklist env: - REDIS_URL: redis://redis:6379 + REDIS_URL: redis://localhost:${{ job.services.redis.ports['6379'] }} -- 2.51.2