From d17e7db1090ee7e1236668046ecf4d19c6bd5300 Mon Sep 17 00:00:00 2001 From: Just Me Date: Sat, 31 Aug 2024 21:34:03 +0300 Subject: [PATCH] Run redis image in tests --- .github/workflows/ui-tests.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index e48a3ed8..3c240b8a 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -29,11 +29,16 @@ jobs: --health-interval 10s --health-timeout 5s --health-retries 5 + redis: + image: redis + ports: + - 6379:6379 env: BUNDLE_WITHOUT: development RAILS_ENV: test DATABASE_URL: "postgresql://postgres:postgres@localhost/IKT_test" + REDIS_URL: "redis://localhost:6379/0" steps: - uses: actions/checkout@v4