Skip to content

Commit bf1b992

Browse files
authored
remove php 8.0 and laravel 8.80
1 parent 2f50031 commit bf1b992

File tree

1 file changed

+5
-13
lines changed

1 file changed

+5
-13
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,12 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
php: [8.0, 8.1, 8.2, 8.3]
15-
laravel: [^8.80, 9.*, 10.*, 11.*]
14+
php: ['8.1', '8.2', '8.3']
15+
laravel: ['9.0', '10.0', '11.0']
1616
dependency-version: [prefer-lowest, prefer-stable]
1717
exclude:
18-
- laravel: 11.*
19-
php: 8.0
20-
- laravel: 11.*
21-
php: 8.1
22-
- laravel: 10.*
23-
php: 8.0
24-
- laravel: ^8.80
25-
php: 8.2
26-
- laravel: ^8.80
27-
php: 8.3
18+
- laravel: '11.0'
19+
php: '8.1'
2820

2921
runs-on: ubuntu-latest
3022
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
@@ -40,7 +32,7 @@ jobs:
4032

4133
- name: Install dependencies
4234
run: |
43-
composer require "illuminate/contracts:${{ matrix.laravel }}" --no-update
35+
composer require "illuminate/contracts:^${{ matrix.laravel }}" --no-update
4436
composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress --no-interaction
4537
4638
- name: Execute tests

0 commit comments

Comments
 (0)