1name: Static analysis 2 3on: [push, pull_request] 4 5jobs: 6 run: 7 if: ${{ !startsWith(github.event.head_commit.message, 'Translation:') }} 8 runs-on: ${{ matrix.operating-system }} 9 name: phpstan 10 11 strategy: 12 matrix: 13 operating-system: [ubuntu-latest] 14 php-version: ['8.1', '8.2'] 15 16 steps: 17 - uses: shivammathur/setup-php@master 18 with: 19 php-version: ${{ matrix.php-version }} 20 21 - uses: actions/checkout@v3 22 23 - run: composer validate 24 25 - run: composer global config --no-plugins allow-plugins.phpstan/extension-installer true 26 27 - run: composer global require phpstan/phpstan phpstan/extension-installer phpstan/phpstan-deprecation-rules phpstan/phpstan-strict-rules phpstan/phpstan-phpunit 28 29 - run: composer install --no-progress 30 31 - run: ~/.composer/vendor/bin/phpstan analyze --no-progress --level=max app index.php 32