Merge pull request #270 from guanguans/dependabot/github_actions/acti… #42
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: phpstan | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - '**.php' | |
| - '*.neon' | |
| - '*.xml' | |
| - '*.xml.dist' | |
| - '.github/**.yaml' | |
| - '.github/**.yml' | |
| jobs: | |
| phpstan: | |
| name: phpstan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.2' | |
| extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick | |
| coverage: none | |
| env: | |
| COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Cache composer dependencies | |
| uses: actions/cache@v5 | |
| with: | |
| path: vendor | |
| key: composer-${{ hashFiles('composer.lock') }} | |
| - name: Run composer install | |
| run: composer install --no-interaction --prefer-dist --ansi -v | |
| - name: Run phpstan | |
| run: composer phpstan |