We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c078f61 commit 93a2e98Copy full SHA for 93a2e98
1 file changed
.github/actions/ci/action.yml
@@ -61,6 +61,13 @@ runs:
61
sudo rm -rf /usr/share/swift
62
shell: bash
63
64
+ - name: Install PostgreSQL client libraries on macOS
65
+ if: ${{ runner.os == 'macOS' }}
66
+ run: |
67
+ brew install libpq
68
+ echo "LIBRARY_PATH=$(brew --prefix libpq)/lib:$LIBRARY_PATH" >> "$GITHUB_ENV"
69
+ shell: bash
70
+
71
- name: Disable incremental compilation on Windows
72
if: ${{ runner.os == 'Windows' }}
73
run: echo 'CARGO_INCREMENTAL=0' >> "$GITHUB_ENV"
0 commit comments