Skip to content

Commit ba50cef

Browse files
authored
run phpstan on all supported php versions
1 parent e4fa6af commit ba50cef

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/lint.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ jobs:
3333
phpstan:
3434
name: PHPStan
3535
runs-on: ubuntu-latest
36+
37+
strategy:
38+
fail-fast: true
39+
matrix:
40+
php: [8.2, 8.3, 8.4, 8.5]
3641

3742
steps:
3843
- name: Checkout code
@@ -44,7 +49,7 @@ jobs:
4449
- name: Setup PHP
4550
uses: shivammathur/setup-php@v2
4651
with:
47-
php-version: 8.4
52+
php-version: ${{ matrix.php }}
4853
tools: composer:v2
4954
coverage: none
5055

0 commit comments

Comments
 (0)