phpstan
phpstan copied to clipboard
PHP Static Analysis in Github Actions.
The "--paths-file" option does not exist, though there's mention of it in https://github.com/php-actions/phpstan#inputs. I tried to use it like this: ``` - name: PHPStan Static Analysis uses: php-actions/phpstan@v3 with: memory_limit:...
This functionality has been missed because I seem to have an allergic reaction to YAML. User [MarcinOrlowski kindly recommended](https://github.com/php-actions/phpstan/issues/10#issuecomment-1038940197) a more intuitive syntax to use for the path argument: >...
The ZIP Extension doesn't appear to be loading correctly. Changing from this action to just default phpstan resolved this issue immediately. ``` Run php-actions/phpstan@v3 with: configuration: phpstan.neon memory_limit: 10[2](https://github.com/smpw/smpw/actions/runs/7534158826/job/20508025856#step:10:2)4M version:...
A project I work on is using this action, and began failing with the switch to the composer being the version used by default. It transpires that this is because...
I'm having an issue running the CI and here is the log. ``` Run php-actions/phpstan@v3 with: path: src configuration: tools/phpstan/phpstsan.neon version: composer php_version: latest command: analyse Run set -e set...
To integrate phpstan and sonarcloud we have to create a file containing json with the phpstan result. PhpStan itself doesn't have an option to save the result directly to a...
The current master branch which has some additions vs `v3.0.2` is not tagged and released yet. I'm not very fond of using master ```yaml - name: PHPStan Static Analysis uses:...
Hello, in the https://github.com/php-actions/phpstan/pull/21 there is a breaking change! Many projects use the standalone version of PHPstan without using Composer. But with changes that were made in https://github.com/php-actions/phpstan/pull/21 the default...