Skip to content

feat(Forum): share documentation forum on bottom + certification badg… #1416

feat(Forum): share documentation forum on bottom + certification badg…

feat(Forum): share documentation forum on bottom + certification badg… #1416

Workflow file for this run

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