add tags when creating or updating forum #2586
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
CELLAR_ADDON_KEY_ID: minioadmin | |
CELLAR_ADDON_KEY_SECRET: minioadmin | |
CELLAR_ADDON_PROTOCOL: http | |
CELLAR_ADDON_HOST: localhost:9000 | |
services: | |
minio: | |
image: bitnami/minio | |
env: | |
MINIO_ROOT_USER: minioadmin | |
MINIO_ROOT_PASSWORD: minioadmin | |
ports: | |
- 9000:9000 | |
postgres: | |
# Docker Hub image | |
image: postgres:15-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.11' | |
cache: pip | |
cache-dependency-path: requirements/dev.txt | |
- name: 📥 Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements/dev.txt | |
- name: ✨ Black, ruff & djlint | |
run: make quality | |
- name: 🚧 collect static for testing purposes | |
run: | | |
python manage.py collectstatic | |
python manage.py compress | |
- name: 🚧 Check pending migrations | |
run: python manage.py makemigrations --check --dry-run --noinput | |
- name: 🚧 Configure bucket | |
run: python manage.py configure_bucket | |
- name: 🤹 Django tests | |
run: pytest --numprocesses=logical --create-db | |
env: | |
DJANGO_DEBUG: True |