Set $previous as nullable explicitly #110
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: Static Analysis | |
| on: | |
| push: | |
| branches: [ develop ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| cs: | |
| runs-on: ubuntu-latest | |
| name: Code Style | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.0 | |
| tools: composer:v2 | |
| coverage: none | |
| - name: Install Dependencies | |
| run: composer update --no-interaction --no-progress --ansi | |
| - name: Run PHP-CS-Fixer | |
| run: vendor/bin/php-cs-fixer fix -v --allow-risky=yes --dry-run --ansi | |
| phpstan: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| dependency-version: [prefer-lowest, prefer-stable] | |
| name: PHPStan ${{ matrix.dependency-version }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.0 | |
| tools: composer:v2 | |
| coverage: none | |
| - name: Install Dependencies | |
| run: composer update --prefer-stable --no-interaction --no-progress --ansi | |
| - name: Run PHPStan | |
| run: vendor/bin/phpstan analyse --no-progress --ansi |