File tree 1 file changed +5
-2
lines changed 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 39
39
- name : Start postgres
40
40
run : sudo systemctl start postgresql
41
41
42
+ - name : Set password for postgres user
43
+ run : sudo -u postgres psql -c "ALTER USER postgres PASSWORD 'root'"
44
+
42
45
- name : Create vector extension
43
46
run : sudo -u postgres psql -c 'CREATE EXTENSION vector'
44
47
65
68
env :
66
69
POSTGRES_HOST : localhost
67
70
POSTGRES_USERNAME : postgres
68
- POSTGRES_PASSWORD :
71
+ POSTGRES_PASSWORD : root
69
72
POSTGRES_DATABASE : postgres
70
73
POSTGRES_SSL : disable
71
74
@@ -123,7 +126,7 @@ jobs:
123
126
AZURE_OPENAI_EMBEDDING_COLUMN : ${{ vars.AZURE_OPENAI_EMBEDDING_COLUMN }}
124
127
POSTGRES_HOST : localhost
125
128
POSTGRES_USERNAME : postgres
126
- POSTGRES_PASSWORD :
129
+ POSTGRES_PASSWORD : root
127
130
POSTGRES_DATABASE : postgres
128
131
POSTGRES_SSL : disable
129
132
- name : Evaluate local RAG flow
You can’t perform that action at this time.
0 commit comments