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.
1 parent fea435a commit 9c7ba61Copy full SHA for 9c7ba61
.github/workflows/ci.yml
@@ -26,18 +26,20 @@ jobs:
26
name: PHPStan
27
28
runs-on: ubuntu-latest
29
-
+ strategy:
30
+ matrix:
31
+ php-versions: ['7.4', '8.1']
32
steps:
33
- uses: actions/checkout@v2
34
- uses: php-actions/composer@v5
35
with:
- php_version: 7.4
36
+ php_version: ${{ matrix.php-versions }}
37
38
- name: PHPStan Static Analysis
39
uses: php-actions/phpstan@v3
40
41
path: src/
42
43
44
build-test:
45
0 commit comments