From 7c8fc3f17a6ff23be65fbbec190d4e9b1c944157 Mon Sep 17 00:00:00 2001 From: Krishan Koenig Date: Mon, 31 May 2021 10:09:39 +0200 Subject: [PATCH 1/3] fix L7 test --- .github/workflows/run-tests-L7.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/run-tests-L7.yml b/.github/workflows/run-tests-L7.yml index be6886f..5bc3287 100644 --- a/.github/workflows/run-tests-L7.yml +++ b/.github/workflows/run-tests-L7.yml @@ -15,6 +15,7 @@ jobs: include: - laravel: 7.* testbench: 5.* + dbal: 2.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} From 8a3e3817aee285971ed0547e91012bbea8fd66a9 Mon Sep 17 00:00:00 2001 From: Krishan Koenig Date: Mon, 31 May 2021 10:22:44 +0200 Subject: [PATCH 2/3] wip --- .github/workflows/run-tests-L7.yml | 2 +- phpunit.xml | 47 ++++++++++++++---------------- 2 files changed, 23 insertions(+), 26 deletions(-) diff --git a/.github/workflows/run-tests-L7.yml b/.github/workflows/run-tests-L7.yml index 5bc3287..bc26e23 100644 --- a/.github/workflows/run-tests-L7.yml +++ b/.github/workflows/run-tests-L7.yml @@ -38,7 +38,7 @@ jobs: - name: Install dependencies run: | - composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "symfony/console:>=4.3.4" --no-interaction --no-update + composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "doctrine/dbal:${{ matrix.dbal }}" --no-interaction --no-update composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction - name: Execute tests diff --git a/phpunit.xml b/phpunit.xml index f82aa76..b1e26d9 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,26 +1,23 @@ - - - - - tests - - - - - - - - - - - - - - - - - src/ - - - \ No newline at end of file + + + + src/ + + + + + tests + + + + + + + + + + + + + From 80b6dca0d0132c0728cc781c32e51549fc8f7a47 Mon Sep 17 00:00:00 2001 From: Krishan Koenig Date: Mon, 31 May 2021 10:24:25 +0200 Subject: [PATCH 3/3] wip --- .github/workflows/run-tests-L7.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests-L7.yml b/.github/workflows/run-tests-L7.yml index bc26e23..99837ae 100644 --- a/.github/workflows/run-tests-L7.yml +++ b/.github/workflows/run-tests-L7.yml @@ -15,7 +15,7 @@ jobs: include: - laravel: 7.* testbench: 5.* - dbal: 2.* + dbal: ^2.10 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}