From 9faf01f965b8ec3e28b7072c3f7758f99a35f4af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Klabbers?= Date: Mon, 4 Mar 2024 21:09:45 +0100 Subject: [PATCH] chore: introduce the env vars --- .github/workflows/REUSABLE_backend.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/REUSABLE_backend.yml b/.github/workflows/REUSABLE_backend.yml index 0c03a5dd5..d9e08a9fe 100644 --- a/.github/workflows/REUSABLE_backend.yml +++ b/.github/workflows/REUSABLE_backend.yml @@ -118,6 +118,14 @@ jobs: image: ${{ matrix.service }} ports: - 13306:3306 + postgres: + image: ${{ matrix.service }} + ports: + - 13306:5432 + env: + POSTGRES_USER: root + POSTGRES_PASSWORD: root + POSTGRES_DB: flarum_test name: 'PHP ${{ matrix.php }} / ${{ matrix.db }} ${{ matrix.prefixStr }}'