Skip to content

Commit b82e803

Browse files
committed
Start postgres on windows
1 parent ac53a46 commit b82e803

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/app-tests.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,18 +55,18 @@ jobs:
5555
psql -d postgres -c "ALTER USER ${{ env.POSTGRES_USERNAME }} WITH PASSWORD '${{ env.POSTGRES_PASSWORD }}'"
5656
psql -d postgres -c 'CREATE EXTENSION vector'
5757
58+
- name: (Windows) Install pgvector using install-pgvector.bat
59+
if: matrix.os == 'windows-latest'
60+
shell: cmd
61+
run: .github\workflows\install-pgvector.bat
62+
5863
- name: (Windows) Start postgreSQL
5964
uses: ikalnytskyi/action-setup-postgres@v6
6065
with:
6166
username: ${{ env.POSTGRES_USERNAME }}
6267
password: ${{ env.POSTGRES_PASSWORD }}
6368
database: ${{ env.POSTGRES_DATABASE }}
6469

65-
- name: (Windows) Install pgvector using install-pgvector.bat
66-
if: matrix.os == 'windows-latest'
67-
shell: cmd
68-
run: .github\workflows\install-pgvector.bat
69-
7070
- name: (Linux) Install pgvector and set password
7171
if: matrix.os == 'ubuntu-latest'
7272
run: |

0 commit comments

Comments
 (0)