We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4fa6af commit ba50cefCopy full SHA for ba50cef
1 file changed
.github/workflows/lint.yml
@@ -33,6 +33,11 @@ jobs:
33
phpstan:
34
name: PHPStan
35
runs-on: ubuntu-latest
36
+
37
+ strategy:
38
+ fail-fast: true
39
+ matrix:
40
+ php: [8.2, 8.3, 8.4, 8.5]
41
42
steps:
43
- name: Checkout code
@@ -44,7 +49,7 @@ jobs:
44
49
- name: Setup PHP
45
50
uses: shivammathur/setup-php@v2
46
51
with:
47
- php-version: 8.4
52
+ php-version: ${{ matrix.php }}
48
53
tools: composer:v2
54
coverage: none
55
0 commit comments