From 397d4cf078c471e9c879ba878ced397fac53359e Mon Sep 17 00:00:00 2001 From: Jacob Kapitein Date: Fri, 17 May 2024 15:37:03 +0200 Subject: [PATCH] ci: add phpunit dependency update to ci --- .github/workflows/run-tests.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 00f0f92..a9d8e6e 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -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: @@ -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