-
Notifications
You must be signed in to change notification settings - Fork 3
105 lines (91 loc) · 3.12 KB
/
Copy pathtest-cms.yml
File metadata and controls
105 lines (91 loc) · 3.12 KB
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
name: Test CMS
on:
push:
paths: &paths
- "cms/**"
- ".github/workflows/test-cms.yml"
# The datastore mirror drift check depends on the backend schema:
- "backend/app/models.py"
- "backend/app/alembic/**"
# Also on PRs, so the suite runs against the MERGE RESULT rather than only
# the branch tip.
pull_request:
paths: *paths
jobs:
container-job:
runs-on: ubuntu-latest
container: python:3.12.6
services:
postgres:
image: postgis/postgis:16-3.4
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
DJANGO_SETTINGS_MODULE: config.settings.dev
DJANGO_SECRET_KEY: test-only-secret-key
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
POSTGRES_SERVER: postgres
POSTGRES_PORT: 5432
steps:
- name: Checkout repo code
uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt --no-cache-dir
working-directory: cms
- name: Django system checks
run: python manage.py check
working-directory: cms
- name: Bootstrap schema and migrate
run: |
python manage.py bootstrap_schema
python manage.py migrate --noinput
working-directory: cms
- name: Check for missing migrations
run: python manage.py makemigrations --check --dry-run
working-directory: cms
- name: Run tests
run: python manage.py test
working-directory: cms
# Drift guard: datastore mirrors the Alembic-owned `public` tables with
# managed=False models. Run the backend's migrations against the same
# database, then verify the mirrors still match the live schema.
- name: Install backend dependencies (for Alembic)
run: |
pip install -r requirements.txt --no-cache-dir
working-directory: backend
- name: Run backend (Alembic) migrations
run: alembic upgrade head
working-directory: backend
env:
DOMAIN: postgres
ENVIRONMENT: test
PROJECT_NAME: Districtr v2 backend
BACKEND_CORS_ORIGINS: "http://localhost,http://localhost:5173"
SECRET_KEY: mysupersecretkey
DATABASE_URL: postgresql+psycopg://postgres:postgres@postgres:5432/postgres
POSTGRES_SCHEME: postgresql+psycopg
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
POSTGRES_SERVER: postgres
POSTGRES_PORT: 5432
AUTH_JWKS_URL: http://localhost:8001/.well-known/jwks.json
AUTH_AUDIENCE: http://localhost:8000/
AUTH_ISSUER: http://localhost:8001
AUTH_ALGORITHMS: RS256
- name: Check mirror drift
run: python manage.py check_mirror_drift
working-directory: cms