mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 12:19:06 +00:00
* build: move to uv * build: add packages declaration * build: move to python 3.12, as sentencespiece does not work on 3.13 * ci: remove pre-commit check, will be done in another branch. * ci: fix name checkout * ci: update lock and dockerfile * test: remove event_loop, not needed in python 3.12 * test: updated test due to av returning AudioFrame with 4096 samples instead of 1024 * build: prevent using fastapi cli, because there is no way to set default port I don't want to pass --port 1250 every time, so back on previous approach. I deactivated auto-reload for production. * ci: remove main.py * test: fix quirck with httpx
47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
YAML
name: Test Database Migrations
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "server/migrations/**"
|
|
- "server/reflector/db/**"
|
|
- "server/alembic.ini"
|
|
- ".github/workflows/db_migrations.yml"
|
|
pull_request:
|
|
paths:
|
|
- "server/migrations/**"
|
|
- "server/reflector/db/**"
|
|
- "server/alembic.ini"
|
|
- ".github/workflows/db_migrations.yml"
|
|
|
|
jobs:
|
|
test-migrations:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v3
|
|
with:
|
|
enable-cache: true
|
|
working-directory: server
|
|
|
|
- name: Test migrations from scratch
|
|
working-directory: server
|
|
run: |
|
|
echo "Testing migrations from clean database..."
|
|
uv run alembic upgrade head
|
|
echo "✅ Fresh migration successful"
|
|
|
|
- name: Test migration rollback and re-apply
|
|
working-directory: server
|
|
run: |
|
|
echo "Testing rollback to base..."
|
|
uv run alembic downgrade base
|
|
echo "✅ Rollback successful"
|
|
|
|
echo "Testing re-apply of all migrations..."
|
|
uv run alembic upgrade head
|
|
echo "✅ Re-apply successful"
|