Update symplify/easy-coding-standard requirement from ^12.2 to ^13.0 #379
Workflow file for this run
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: Code Analysis | |
| on: | |
| pull_request: null | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| matrix: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| actions: | |
| - name: Coding Standard | |
| run: 'composer fix-cs' | |
| - name: 'PHPStan' | |
| run: composer phpstan | |
| - name: 'Unit Tests' | |
| run: vendor/bin/phpunit | |
| name: ${{ matrix.actions.name }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| # see https://github.com/shivammathur/setup-php | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.2 | |
| # needed by phpunit | |
| extensions: mbstring | |
| - run: composer install --no-progress --ansi | |
| - run: ${{ matrix.actions.run }} |