Skip to content

fix(admin): prevent review queue looping back to same app after update #3

fix(admin): prevent review queue looping back to same app after update

fix(admin): prevent review queue looping back to same app after update #3

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
env:
SECRET_KEY: "ci-test-key-not-for-production"
DATABASE_URL: "sqlite:///test.db"
DEBUG: "True"
STAFF_NOTIFICATION_EMAIL: "test@example.com"
run: |
python manage.py test applications --verbosity=2