Skip to content

Commit

Permalink
Revert "ci.yml: avoid calling brew link libpq --force on macos"
Browse files Browse the repository at this point in the history
This reverts commit faa8938.
  • Loading branch information
rymnc committed Apr 25, 2024
1 parent 530e758 commit 9851aec
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,11 @@ jobs:

- name: Run tests
run: |
if [ ${{ runner.os }} == "macOS" ]; then
brew unlink postgresql@14
brew link libpq --force
fi
if [ ${{ runner.os }} == "Linux" ]; then
sudo docker run --rm -d -e POSTGRES_PASSWORD=test123 -p 5432:5432 postgres:15.4-alpine3.18
fi
Expand Down

0 comments on commit 9851aec

Please sign in to comment.