We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00ee507 commit 2a06e68Copy full SHA for 2a06e68
1 file changed
.github/workflows/app-tests.yaml
@@ -49,14 +49,15 @@ jobs:
49
brew install pgvector
50
brew services start postgresql@14 && sleep 1
51
psql -d postgres -c 'CREATE EXTENSION vector'
52
+ psql -d postgres -c "ALTER USER $(whoami) WITH PASSWORD '${{ secrets.POSTGRES_PASSWORD }}'"
53
54
- name: (MacOSLarge) Install postgreSQL using action-setup-postgres
55
if: matrix.os == 'macos-latest-xlarge'
56
uses: ikalnytskyi/action-setup-postgres@v6
57
with:
- username: admin
58
- password: postgres
59
- database: postgres
+ username: ${{ env.POSTGRES_USERNAME }}
+ password: ${{ env.POSTGRES_PASSWORD }}
60
+ database: ${{ env.POSTGRES_DATABASE }}
61
62
- name: (Windows) Install pgvector using install-pgvector.bat
63
if: matrix.os == 'windows-latest'
0 commit comments