Skip to content

Commit

Permalink
Require testbench 8 in laravel 10 matrix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
c-tanner committed Sep 28, 2024
1 parent 9c3bd34 commit 82aea57
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/laravel-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
php-version: ${{ matrix.php }}
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
- name: Run tests
run: vendor/bin/phpunit --testsuite=Feature --colors=always
4 changes: 3 additions & 1 deletion .github/workflows/php-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@ jobs:
include:
- php: 8.2
laravel: 10.*
testbench: 8.27
- php: 8.3
laravel: 11.*
testbench: 9.*
steps:
- uses: actions/checkout@v4
- name: Setup PHP
Expand All @@ -31,7 +33,7 @@ jobs:
php-version: ${{ matrix.php }}
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
- name: Run tests
run: vendor/bin/phpunit --testsuite=Feature --colors=always

0 comments on commit 82aea57

Please sign in to comment.