We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 275bfd8 commit df2e3f8Copy full SHA for df2e3f8
1 file changed
.github/workflows/testing.yml
@@ -44,7 +44,7 @@ jobs:
44
- "3.11"
45
db-url:
46
- "sqlite+aiosqlite:///./db.sqlite3"
47
- - "postgresql+asyncpg://postgres:postgres@postgres:5432/postgres"
+ - "postgresql+asyncpg://user:passwd@localhost:5432/postgres"
48
49
# Service containers to run with `container-job`
50
services:
@@ -54,7 +54,9 @@ jobs:
54
image: postgres
55
# Provide the password for postgres
56
env:
57
- POSTGRES_PASSWORD: postgres
+ POSTGRES_USER: user
58
+ POSTGRES_PASSWORD: passwd
59
+ POSTGRES_DB: postgres
60
# Set health checks to wait until postgres has started
61
options: >-
62
--health-cmd pg_isready
0 commit comments