default parameters (wwwDir, appDir, ...) are now overridable in user … #95
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Static Analysis (only informative) | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| phpstan: | |
| name: PHPStan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.0 | |
| coverage: none | |
| - run: composer install --no-progress --prefer-dist | |
| - run: composer phpstan -- --no-progress | |
| continue-on-error: true # is only informative |