Add maximum depth to serializer to prevent infinite recursion (#167) #236
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: Static analysis | |
on: | |
pull_request: ~ | |
push: | |
branches: | |
- master | |
jobs: | |
job: | |
strategy: | |
matrix: | |
include: | |
- description: Validate composer.json | |
script: composer validate | |
- description: Code style | |
script: composer cs-check | |
- description: PHPStan | |
script: bin/phpstan analyze | |
name: ${{ matrix.description }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 7.4 | |
- name: Install dependencies | |
uses: ramsey/composer-install@v3 | |
- run: ${{ matrix.script }} |