From 0163ca88c3cddad25f8f0acd58117a3b044d0f99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Mon, 6 May 2024 02:38:04 +0200 Subject: [PATCH] Remove unneeded POSTGRES_HOST option in CI workflows Not sure whether it was needed when we included it, but everything is working fine without it. --- .github/workflows/db_schema.yml | 1 - .github/workflows/tests.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/workflows/db_schema.yml b/.github/workflows/db_schema.yml index 637f371ea..b038781c8 100644 --- a/.github/workflows/db_schema.yml +++ b/.github/workflows/db_schema.yml @@ -23,7 +23,6 @@ jobs: POSTGRES_PASSWORD: "" env: PGUSER: consul - POSTGRES_HOST: postgres steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dfb173e4a..8d9761904 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,7 +27,6 @@ jobs: POSTGRES_PASSWORD: "" env: PGUSER: consul - POSTGRES_HOST: postgres RAILS_ENV: test strategy: fail-fast: false