From f96af3f70810555d75ae9f3ba6f16e7e464e1926 Mon Sep 17 00:00:00 2001 From: zomars Date: Sat, 18 Feb 2023 09:33:34 -0700 Subject: [PATCH] Update production-build.yml --- .github/workflows/production-build.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/production-build.yml b/.github/workflows/production-build.yml index 9f10de3eab..8f0082b8b1 100644 --- a/.github/workflows/production-build.yml +++ b/.github/workflows/production-build.yml @@ -51,11 +51,16 @@ env: jobs: build: name: Build - runs-on: ubuntu-latest - timeout-minutes: 30 - + services: + postgres: + image: postgres:12.1 + env: + POSTGRES_USER: postgres + POSTGRES_DB: calendso + ports: + - 5432:5432 steps: - name: Checkout uses: actions/checkout@v3