From 8e7540e0958d7a06ef75397efd6844dfc029ab46 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Thu, 17 Jul 2025 11:28:04 +0200 Subject: [PATCH] Add missing migration in sqlx CI --- .github/workflows/commit-sqlx-changes.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/commit-sqlx-changes.yml b/.github/workflows/commit-sqlx-changes.yml index 16ee0aa69..33899db7a 100644 --- a/.github/workflows/commit-sqlx-changes.yml +++ b/.github/workflows/commit-sqlx-changes.yml @@ -48,6 +48,9 @@ jobs: - name: install SQLX CLI run: cargo install sqlx-cli --no-default-features --features postgres + - name: run database migrations + run: cargo sqlx migrate run --database-url $DOCSRS_DATABASE_URL + - name: Commit sqlx changes on master branch if any run: | just sqlx-prepare