We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aae40f9 commit e3d420bCopy full SHA for e3d420b
2 files changed
.github/workflows/pg-testing.yml
.github/workflows/testing.yml
@@ -44,7 +44,7 @@ jobs:
44
- "3.11"
45
db-url:
46
- "sqlite+aiosqlite:///./db.sqlite3"
47
-# - "postgresql+asyncpg://user:passwd@postgres:5432/app"
+ - "postgresql+asyncpg://user:passwd@localhost:5432/app"
48
49
# Service containers to run with `container-job`
50
services:
@@ -63,7 +63,9 @@ jobs:
63
--health-interval 10s
64
--health-timeout 5s
65
--health-retries 5
66
-
+ ports:
67
+ # Maps tcp port 5432 on service container to the host
68
+ - 5432:5432
69
steps:
70
- uses: actions/checkout@v3
71
- name: Set up Python ${{ matrix.python-version }}
0 commit comments