Skip to content

Commit 053df0f

Browse files
authored
wip
1 parent 5a5e158 commit 053df0f

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

.github/workflows/tests.yml

+6-9
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,14 @@ jobs:
1717
strategy:
1818
fail-fast: true
1919
matrix:
20-
php: [8.2, 8.3]
20+
php: [8.1, 8.2, 8.3, 8.4]
2121
phpunit: [10, 11]
2222
laravel: [10, 11]
23-
include:
24-
- php: 8.4
23+
exclude:
24+
- php: 8.1
2525
laravel: 11
26-
phpunit: 10
2726
- php: 8.4
28-
laravel: 11
29-
phpunit: 11
30-
exclude:
27+
laravel: 10
3128
- phpunit: 11
3229
laravel: 10
3330

@@ -48,10 +45,10 @@ jobs:
4845

4946
- name: Install dependencies
5047
run: |
51-
composer update --with="laravel/framework=^${{ matrix.laravel }}" --with="phpunit/phpunit:^${{ matrix.phpunit }}" --prefer-dist --no-interaction --no-progress
48+
composer update --prefer-dist --no-interaction --no-progress --with="laravel/framework=^${{ matrix.laravel }}" --with="phpunit/phpunit:^${{ matrix.phpunit }}"
5249
5350
- name: Execute tests
54-
run: vendor/bin/phpunit
51+
run: vendor/bin/phpunit --display-deprecations --fail-on-deprecation
5552

5653
paratests:
5754
runs-on: ubuntu-22.04

0 commit comments

Comments
 (0)