From 6df4e151a3a1e68a52878d632da54306e3b74e90 Mon Sep 17 00:00:00 2001 From: Damilola Olowookere Date: Thu, 10 Oct 2024 12:38:07 +0100 Subject: [PATCH] Update composer require command to remove pest-plugin-mock --- .github/workflows/run-tests.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 8203bfb..d0ae00d 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -21,13 +21,11 @@ jobs: pest: ^3.0 pest-plugin-laravel: ^3.0 pest-plugin-watch: ^3.0 - pest-plugin-mock: ^2.0 - laravel: 10.* testbench: ^8.0 pest: ^2.0 pest-plugin-laravel: ^2.0 pest-plugin-watch: ^2.0 - pest-plugin-mock: ^2.0 exclude: - laravel: 11.* php: 8.1 @@ -50,7 +48,7 @@ jobs: - name: Install composer packages run: | - composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" pestphp/pest:${{matrix.pest}} pestphp/pest-plugin-laravel:${{matrix.pest-plugin-laravel}} pestphp/pest-plugin-mock:${{matrix.pest-plugin-mock}} pestphp/pest-plugin-watch:${{matrix.pest-plugin-watch}} --no-interaction --no-update --dev + composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" pestphp/pest:${{matrix.pest}} pestphp/pest-plugin-laravel:${{matrix.pest-plugin-laravel}} pestphp/pest-plugin-watch:${{matrix.pest-plugin-watch}} --no-interaction --no-update --dev composer update --prefer-stable --prefer-dist --no-interaction - name: Execute tests