Updated ECS to commit bd37252a3cb9f046d931ff92d21eed633fd1a2df #2311
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: Bare Run on various PHP versions | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| bare_run: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php_version: ['7.2', '7.4', '8.0', '8.4'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php_version }} | |
| coverage: none | |
| - run: mkdir nested-dir | |
| - run: composer require symplify/easy-coding-standard --dev --ansi | |
| working-directory: nested-dir | |
| - run: vendor/bin/ecs list --ansi | |
| working-directory: nested-dir |