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