|
@@ -17,7 +17,7 @@ jobs:
|
|
|
postgres:
|
|
|
image: postgres:latest
|
|
|
env:
|
|
|
- POSTGRES_PASSWORD: postgres
|
|
|
+ POSTGRES_PASSWORD: ${{ secrets.DATABASE_PASSWORD }}
|
|
|
ports:
|
|
|
- 5432:5432
|
|
|
options: >-
|
|
@@ -55,7 +55,7 @@ jobs:
|
|
|
DB_BACKEND: postgres
|
|
|
POSTGRES_HOST: 127.0.0.1
|
|
|
POSTGRES_PORT: 5432
|
|
|
- POSTGRES_PASSWORD: postgres
|
|
|
+ POSTGRES_PASSWORD: ${{ secrets.DATABASE_PASSWORD }}
|
|
|
POSTGRES_USER: postgres
|
|
|
|
|
|
- name: "BATS: run tests"
|
|
@@ -64,5 +64,5 @@ jobs:
|
|
|
DB_BACKEND: postgres
|
|
|
POSTGRES_HOST: 127.0.0.1
|
|
|
POSTGRES_PORT: 5432
|
|
|
- POSTGRES_PASSWORD: postgres
|
|
|
+ POSTGRES_PASSWORD: ${{ secrets.DATABASE_PASSWORD }}
|
|
|
POSTGRES_USER: postgres
|