File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 17
17
steps :
18
18
- uses : actions/checkout@v4
19
19
20
+ - name : Set up Python 3.12
21
+ uses : actions/setup-python@v4
22
+ with :
23
+ python-version : ' 3.12'
24
+
25
+ - name : Install dev dependencies
26
+ run : |
27
+ python -m pip install --upgrade pip
28
+ pip install -r requirements-dev.txt
29
+
20
30
- name : Set up environment variables
21
31
run : |
22
32
cat > .env << EOF
40
50
- name : Wait for services to be ready
41
51
run : |
42
52
echo "Waiting for services to be ready..."
43
- sleep 15
53
+ timeout 60 bash -c 'until docker compose ps | grep -q "web.*Up"; do sleep 2; done'
54
+ sleep 5
44
55
45
56
- name : Run ${{ matrix.check }}
46
57
run : make ${{ matrix.check }}
Original file line number Diff line number Diff line change
1
+ ruff == 0.1.9
2
+ mypy == 1.8.0
3
+ bandit == 1.7.5
You can’t perform that action at this time.
0 commit comments