Skip to content

Commit d793c67

Browse files
committed
remove prefer-lowest for now
1 parent 9055d3f commit d793c67

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,12 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
os: [ubuntu-latest, windows-latest]
20-
php: [8.2, 8.1, 8.0]
21-
laravel: ['9.*', '10.*', '11.*', '12.*']
22-
stability: [prefer-lowest, prefer-stable]
19+
os: [ ubuntu-latest, windows-latest ]
20+
php: [ 8.2, 8.1, 8.0 ]
21+
laravel: [ 9.*, 10.*, 11.*, 12.* ]
2322
include:
2423
- laravel: 9.*
25-
- testbench: 7.*
24+
testbench: 7.*
2625
- laravel: 10.*
2726
testbench: 8.*
2827
- laravel: 11.*
@@ -41,7 +40,7 @@ jobs:
4140
- laravel: 12.*
4241
php: 8.0
4342

44-
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
43+
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}
4544

4645
steps:
4746
- name: Checkout code
@@ -62,14 +61,14 @@ jobs:
6261
- name: Install dependencies
6362
run: |
6463
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
65-
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
64+
composer update --prefer-dist --no-interaction
6665
6766
- name: List Installed Dependencies
6867
run: composer show -D
6968

7069
- name: Execute tests
7170
run: vendor/bin/pest
72-
71+
7372
- name: Run PHPStan
7473
shell: bash
7574
run: |

0 commit comments

Comments
 (0)