-
Notifications
You must be signed in to change notification settings - Fork 1
60 lines (56 loc) · 1.7 KB
/
ci.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
name: 🔮 CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
env:
PYTHONPATH: .
DJANGO_SETTINGS_MODULE: config.settings.base
DJANGO_SECRET_KEY: ministryofsillywalks
CPUCOUNT: 1
PGPASSWORD: password
PGHOST: localhost
PGUSER: postgres
POSTGRESQL_ADDON_DB: communaute
POSTGRESQL_ADDON_USER: postgres
POSTGRESQL_ADDON_PASSWORD: password
services:
postgres:
# Docker Hub image
image: postgres:14.5-alpine
env:
POSTGRES_PASSWORD: password
ports:
- 5432:5432
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- name: 💾 Create a database to check migrations
run: |
psql <<SQL
CREATE DATABASE communaute;
SQL
- name: 💂 Install Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: 📥 Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/dev.txt
- name: ✨ Black, isort, flake8 & djhtml
run: make quality
- name: 🚧 collect static for testing purposes
run: python manage.py collectstatic
# disabled until we fix the issue for machina apps
#- name: 🚧 Check pending migrations
# run: python manage.py makemigrations --check --dry-run --noinput
- name: 🤹 Django tests
run: pytest --numprocesses=logical --create-db
env:
DJANGO_DEBUG: True