From 13bb6f9933ef0ce8f961effddbb953732a801fdc Mon Sep 17 00:00:00 2001 From: Ernesto Tagwerker Date: Mon, 23 Sep 2024 14:10:33 -0400 Subject: [PATCH] Correct env variables configuration --- .github/workflows/test.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fb30be3..5d35fc9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,6 +13,9 @@ on: jobs: test: runs-on: ubuntu-latest + env: + HOST: localhost + REDIS_HOST: localhost:6379 steps: - name: Checkout code @@ -26,9 +29,5 @@ jobs: - name: Install dependencies run: bundle install - - name: Set environment variables - run: echo "HOST=localhost" >> $GITHUB_ENV - run: echo "REDIS_HOST=localhost:6379" >> $GITHUB_ENV - - name: Run tests run: bundle exec rspec spec \ No newline at end of file