-
Notifications
You must be signed in to change notification settings - Fork 5
149 lines (125 loc) · 3.85 KB
/
qa-backend.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
name: QA backend
on:
workflow_call:
workflow_dispatch:
pull_request:
branches: ["main"]
jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12" # Cached by github (https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md#python)
cache: "pip"
cache-dependency-path: |
./backend/uv.lock
- name: Cache venv
id: cache-venv
uses: actions/cache@v3
with:
path: ./backend/.venv
key: python-3-12-venv-${{ hashFiles('./backend/uv.lock') }}
- name: Install dependencies
if: ${{ steps.cache-venv.outputs.cache-hit != 'true' }}
run: |
cd backend
python -m pip install --upgrade pip
pip install uv
uv sync --frozen
ruff:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
cache-dependency-path: |
./backend/uv.lock
- name: Cache venv
uses: actions/cache@v3
with:
path: ./backend/.venv
key: python-3-12-venv-${{ hashFiles('./backend/uv.lock') }}
- name: Run ruff
run: |
cd backend
. .venv/bin/activate
ruff check --select I .
ruff check .
ruff format --check .
mypy:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
cache-dependency-path: |
./backend/uv.lock
- name: Cache venv
uses: actions/cache@v3
with:
path: ./backend/.venv
key: python-3-12-venv-${{ hashFiles('./backend/uv.lock') }}
- name: Run mypy
run: |
cd backend
. .venv/bin/activate
mypy .
coverage:
needs: setup
runs-on: ubuntu-latest
services:
postgres:
image: postgis/postgis:16-3.4-alpine
env:
POSTGRES_DB: django_react_starter
POSTGRES_USER: django_react_starter
POSTGRES_PASSWORD: django_react_starter
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
meilisearch:
image: getmeili/meilisearch:v1.6.2
env:
MEILI_HTTP_ADDR: 0.0.0.0:7700
MEILI_MASTER_KEY: masterKey
ports:
- 7700:7700
options: --health-cmd="curl -f http://localhost:7700/health" --health-interval=10s --health-timeout=5s --health-retries=5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
cache-dependency-path: |
./backend/uv.lock
- name: Cache venv
uses: actions/cache@v3
with:
path: ./backend/.venv
key: python-3-12-venv-${{ hashFiles('./backend/uv.lock') }}
- name: Install gdal-bin
run: sudo apt-get install gdal-bin
- name: Run coverage
env:
POSTGRES_HOST: localhost
POSTGRES_PORT: 5432
POSTGRES_USER: django_react_starter
POSTGRES_PASSWORD: django_react_starter
POSTGRES_DB: django_react_starter
MEILISEARCH_HOST: http://localhost:7700
MEILISEARCH_API_KEY: masterKey
run: |
cd backend
. .venv/bin/activate
python manage.py collectstatic --noinput --settings=django_react_starter.settings.test
coverage run --source='.' manage.py test --settings=django_react_starter.settings.test
coverage report --fail-under=90