From 853e29dd833ea2d3a25ecf7733f2eac7d48b7707 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Mon, 10 Jun 2024 23:47:28 +0200 Subject: [PATCH] Removed sqlite database creation This is not possible anymore for the sqlite driver and is unnesecarry as it is automatically created on migration --- .github/workflows/tests.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 92430775..67f1b6d1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -113,11 +113,6 @@ jobs: - name: Create DB run: php bin/console --env test doctrine:database:create --if-not-exists -n if: matrix.db-type == 'mysql' || matrix.db-type == 'postgres' - - # Checkinf for existance is not supported for sqlite, so do it without it - - name: Create DB - run: php bin/console --env test doctrine:database:create -n - if: matrix.db-type == 'sqlite' - name: Do migrations run: php bin/console --env test doctrine:migrations:migrate -n