diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 18bf85ec..37f62d1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,6 +31,8 @@ jobs: SECRET_KEY: ci-test-secret-key-not-for-production DEBUG: "true" APP_NAME: ResolutionFlow + TEST_DB_NAME: resolutionflow_test + DB_APP_ROLE_PASSWORD: app_secret_ci steps: - uses: actions/checkout@v5 @@ -47,6 +49,9 @@ jobs: - name: Install dependencies run: pip install -r backend/requirements.txt -r backend/requirements-dev.txt + - name: Run Alembic migrations + run: cd backend && alembic upgrade head + - name: Check tenant filter enforcement run: cd backend && python scripts/check_tenant_filters.py # Warn mode only (exits 0). Switch to --fail after Phase 1 backlog clears.