From 4a788139dce37c307e1fc3d6a19ad1cb2113e028 Mon Sep 17 00:00:00 2001 From: Neyts Zupan Date: Fri, 22 Nov 2024 21:29:41 +0000 Subject: [PATCH] Remove the need for a separate alembic.ini file (#6) --- alembic/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alembic/action.yml b/alembic/action.yml index c1da3de..4605070 100644 --- a/alembic/action.yml +++ b/alembic/action.yml @@ -26,7 +26,7 @@ runs: BASE: ${{ inputs.base }} run: | cd backend - ALEMBIC="alembic -c etc/alembic.ini -x ini=etc/test.ini" + ALEMBIC="alembic -c etc/test.ini" nix-shell --run "$ALEMBIC upgrade head" nix-shell --run "$ALEMBIC revision --autogenerate -m 'Test Consistency'"