Skip to content

Commit ba85825

Browse files
committed
chore: remove pest dependencies from PHP workflow configuration
1 parent 1a9d56b commit ba85825

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

.github/workflows/php.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,12 @@ jobs:
1414
include:
1515
- laravel: 12.*
1616
testbench: 10.*
17-
termwind: 2.*
18-
pest: 3.*
1917
- laravel: 11.*
2018
testbench: 9.*
21-
termwind: 2.*
22-
pest: 2.*
2319
- laravel: 10.*
2420
testbench: 8.*
25-
termwind: 1.*
26-
pest: 1.*
2721
- laravel: 9.*
2822
testbench: 7.*
29-
termwind: 1.*
30-
pest: 1.*
3123

3224
name: PHP ${{ matrix.php }} + Laravel ${{ matrix.laravel }}
3325
steps:
@@ -44,8 +36,8 @@ jobs:
4436

4537
- name: Install dependencies
4638
run: |
47-
composer require "laravel/framework:${{ matrix.laravel }}" "nunomaduro/termwind:${{ matrix.termwind }}" --no-interaction --no-update
48-
composer require "orchestra/testbench:${{ matrix.testbench }}" "pestphp/pest:${{ matrix.pest }}" --dev --no-interaction --no-update
39+
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
40+
composer require "orchestra/testbench:${{ matrix.testbench }}" --dev --no-interaction --no-update
4941
composer update --prefer-dist --no-interaction
5042
5143
- name: Run test suite

0 commit comments

Comments
 (0)