File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,22 @@ jobs:
23
23
strategy :
24
24
max-parallel : 10
25
25
matrix :
26
- os : [ubuntu-latest, windows-latest]
27
- python-version : ["3.9", "3.10", "3.11", "3.12"]
26
+ os : [ubuntu-latest] # , windows-latest]
27
+ python-version : ["3.12"] # "3. 9", "3.10", "3.11", "3.12"]
28
28
steps :
29
29
- uses : actions/checkout@v4
30
30
- name : Set up Python ${{ matrix.python-version }}
31
31
uses : actions/setup-python@v5
32
32
with :
33
33
python-version : ${{ matrix.python-version }}
34
+ - name : Wait for PostgreSQL to become ready
35
+ run : |
36
+ for i in {1..10}; do
37
+ pg_isready -h postgresdbTest -p 5432 && echo Success && exit 0
38
+ echo -n .
39
+ sleep 1
40
+ done
41
+ echo Failed waiting for Postgres && exit 1
34
42
- name : Install dependencies
35
43
run : |
36
44
python -m pip install --upgrade pip
You can’t perform that action at this time.
0 commit comments