xref: /webtrees/.github/workflows/phpstan.yaml (revision 202c018b592d5a516e4a465dc6dc515f3be37399)
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.2', '8.3' ]
15      fail-fast: false
16
17    steps:
18      - uses: shivammathur/setup-php@v2
19        with:
20          php-version: ${{ matrix.php-version }}
21          ini-file: 'development'
22
23      - uses: actions/checkout@v4
24
25      - run: composer validate
26
27      - run: composer global config --no-plugins allow-plugins.phpstan/extension-installer true
28
29      - run: composer global require phpstan/phpstan phpstan/extension-installer phpstan/phpstan-deprecation-rules phpstan/phpstan-strict-rules phpstan/phpstan-phpunit
30
31      - run: composer install --no-progress
32
33      - run: ~/.composer/vendor/bin/phpstan analyze --no-progress --level=max app index.php
34