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 c9f00de commit d5222c1Copy full SHA for d5222c1
.github/workflows/phpstan.yml
@@ -12,22 +12,28 @@ env:
12
COMPOSER_FLAGS: "--ansi --no-interaction --no-progress --prefer-dist"
13
14
jobs:
15
- tests:
+ phpstan:
16
name: "PHPStan"
17
18
runs-on: ubuntu-latest
19
20
+ strategy:
21
+ matrix:
22
+ php-version:
23
+ - "7.2"
24
+ - "8.4"
25
+
26
steps:
27
- name: "Checkout"
28
uses: "actions/checkout@v4"
29
30
- name: "Install PHP"
31
uses: "shivammathur/setup-php@v2"
32
with:
- coverage: "none"
33
+ php-version: "${{ matrix.php-version }}"
34
extensions: "intl, zip"
35
ini-values: "memory_limit=-1"
- php-version: "7.2"
36
+ coverage: "none"
37
38
- name: "Update dependencies"
39
run: "composer update ${{ env.COMPOSER_FLAGS }}"
0 commit comments