From 3b74b059f932c04a877907bbb0e43a7619402adf Mon Sep 17 00:00:00 2001 From: Thomas Lecocq Date: Thu, 19 Sep 2024 16:22:56 +0200 Subject: [PATCH] testing an openai solution for macos :) --- .github/workflows/test_macos.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_macos.yml b/.github/workflows/test_macos.yml index 748c9c9..da2fa80 100644 --- a/.github/workflows/test_macos.yml +++ b/.github/workflows/test_macos.yml @@ -31,10 +31,10 @@ jobs: - name: Initialize PostgreSQL data directory run: | - $POSTGRESQL_HOME/bin/initdb -D $GITHUB_WORKSPACE/postgresql_data + $GITHUB_WORKSPACE/postgresql/bin/initdb -D $GITHUB_WORKSPACE/postgresql_data - name: Start PostgreSQL server - run: pg_ctl -D $GITHUB_WORKSPACE/postgresql_data -l logfile start + run: $GITHUB_WORKSPACE/postgresql/bin/pg_ctl -D $GITHUB_WORKSPACE/postgresql_data -l logfile start - name: Wait for PostgreSQL to start run: |