Skip to content

Commit

Permalink
ci: add phpunit dependency update to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobkapitein committed May 17, 2024
1 parent cb2d8c5 commit 397d4cf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,13 @@ jobs:
include:
- laravel: 9.*
testbench: 7.*
phpunit: ^9.5.10
- laravel: 10.*
testbench: 8.*
phpunit: ^9.6
- laravel: 11.*
testbench: 9.*
phpunit: ^10.5

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
steps:
Expand All @@ -43,8 +46,8 @@ jobs:
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction --with-all-dependencies
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "phpunit/phpunit:${{ matrix.phpunit }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: List Installed Dependencies
run: composer show -D
Expand Down

0 comments on commit 397d4cf

Please sign in to comment.