From b0d372d223bdd0ae41d61aab64f0e615396a2ae3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sat, 23 Jul 2022 22:44:36 +0200 Subject: [PATCH] Fixed github tests action issue with sqlite. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 85f99019..561cffee 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -103,7 +103,7 @@ jobs: # 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' + if: matrix.db-type == 'sqlite' - name: Do migrations run: php bin/console --env test doctrine:migrations:migrate -n