Skip to content

Commit 9844d8f

Browse files
committed
one more try
1 parent ed73ec8 commit 9844d8f

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest]
1212
php: [8.1, 8.2, 8.3]
13+
laravel: [12.*]
14+
include:
15+
- laravel: 12.*
16+
testbench: 10.*
1317

14-
name: P${{ matrix.php }} - ${{ matrix.os }}
18+
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}
1519

1620
steps:
1721
- name: Checkout code
@@ -26,7 +30,8 @@ jobs:
2630

2731
- name: Install dependencies
2832
run: |
29-
composer install --prefer-dist --no-interaction
33+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction
34+
composer install --${{ matrix.stability }} --prefer-dist --no-interaction
3035
3136
- name: Execute phpstan
3237
run: vendor/bin/phpstan analyse

phpstan.neon

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ parameters:
22
paths:
33
- src/
44
level: 6
5-
checkMissingIterableValueType: false
6-
checkGenericClassInNonGenericObjectType: false
5+
ignoreErrors:
6+
- identifier: missingType.iterableValue
7+
- identifier: missingType.generics

0 commit comments

Comments
 (0)