Skip to content

Commit

Permalink
fix dbal version
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Kaufmann committed Feb 16, 2022
1 parent 6bedad9 commit 3a92291
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,16 @@ jobs:
include:
- laravel: 9.*
testbench: 7.*
dbal: 3.*
- laravel: 8.*
testbench: 6.*
dbal: 3.*
- laravel: 7.*
testbench: 5.*
dbal: 3.*
- laravel: 6.*
testbench: 4.*
exclude:
- laravel: 8.*
php: 7.2
dbal: 2.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}

Expand All @@ -46,7 +47,7 @@ jobs:

- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --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 --no-suggest
- name: Execute tests
run: vendor/bin/phpunit

0 comments on commit 3a92291

Please sign in to comment.