We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1da7898 commit f484da0Copy full SHA for f484da0
.github/workflows/tests.yml
@@ -6,6 +6,21 @@ jobs:
6
test:
7
runs-on: ubuntu-latest
8
9
+ services:
10
+ postgres:
11
+ image: postgres:18
12
+ ports:
13
+ - 6432:6432
14
+ env:
15
+ POSTGRES_USER: krylosov-aa
16
+ POSTGRES_PASSWORD:
17
+ POSTGRES_DB: test
18
+ options: >-
19
+ --health-cmd="pg_isready -U test -d test_db"
20
+ --health-interval=5s
21
+ --health-timeout=5s
22
+ --health-retries=5
23
+
24
strategy:
25
matrix:
26
python-version: ["3.13", "3.14"]
examples/starlette_example/database.py
examples/starlette_example/models.py
0 commit comments