build(deps): bump symfony/polyfill-php73 from 1.29.0 to 1.31.0 #2883
This file contains 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: | |
push: | |
branches: | |
- '*' | |
tags: | |
- '*' | |
paths: | |
- '**' | |
- '!*.md' | |
pull_request: | |
paths: | |
- '**' | |
- '!*.md' | |
jobs: | |
phpstan: | |
name: PHPStan | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: nanasess/setup-php@master | |
with: | |
php-version: '8.1' | |
- name: Initialize Composer | |
uses: ./.github/actions/composer | |
- name: PHPStan | |
run: vendor/bin/phpstan analyze src/ --error-format=github |