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 7ff3c4b commit f733d12Copy full SHA for f733d12
.github/workflows/run-python-tests-pg.yml
@@ -64,6 +64,7 @@ jobs:
64
brew install postgresql@${{ matrix.pgver }}
65
echo "/opt/homebrew/opt/postgresql@${{ matrix.pgver }}/bin" >> $GITHUB_PATH
66
67
+
68
- name: Uninstall PostgreSQL if already present on windows
69
if: ${{ matrix.os == 'windows-latest' }}
70
run: |
@@ -85,6 +86,14 @@ jobs:
85
86
IF %ERRORLEVEL% EQU 3010 cmd /c "exit /b 0"
87
shell: cmd
88
89
+ - name: Add pg_config path to PATH
90
+ shell: pwsh
91
+ run: |
92
+ $pgPath = "C:\\PostgreSQL\\${{ matrix.pgver }}\\bin"
93
+ Write-Output $pgPath
94
+ Add-Content -Path $env:GITHUB_PATH -Value $pgPath
95
+ pg_config --version
96
97
- name: Create the tablespace directory on Linux
98
if: ${{ matrix.os == 'ubuntu-22.04' }}
99
0 commit comments