Removed sqlite database creation

This is not possible anymore for the sqlite driver and is unnesecarry as it is automatically created on migration
This commit is contained in:
Jan Böhmer 2024-06-10 23:47:28 +02:00
parent 0c1c46c045
commit 853e29dd83

View file

@ -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