We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 24352d0 + b9e997b commit ce95f14Copy full SHA for ce95f14
.github/workflows/phpstan.yml
@@ -4,19 +4,22 @@ on:
4
push:
5
paths:
6
- '**.php'
7
- - 'phpstan.neon.dist'
+ - '**.neon.dist'
8
9
jobs:
10
phpstan:
11
- name: phpstan
+ name: phpstan (PHP ${{ matrix.php }})
12
runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ php: [8.2, 8.3]
16
steps:
17
- uses: actions/checkout@v4
18
19
- name: Setup PHP
20
uses: shivammathur/setup-php@v2
21
with:
- php-version: '8.3'
22
+ php-version: ${{ matrix.php }}
23
coverage: none
24
25
- name: Install composer dependencies
0 commit comments