From 2eaa2ad269a1f749e986526d9dce54da81e022e9 Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Tue, 17 Sep 2024 08:42:43 +0200 Subject: [PATCH] Execute migrations in CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86f3260..81adacc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: run: composer install --no-interaction --optimize-autoloader - name: Setup database - run: bin/console doctrine:schema:create + run: bin/console doctrine:migrations:migrate --no-interaction - name: Run tests run: ./vendor/bin/phpunit