Updated ECS to commit 9a00ea6cc6ed3b6db115f7e864a45bfa7ef2eb1f #1849
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: Check Command Run | |
| on: | |
| push: | |
| jobs: | |
| check_command_run: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php_version: ['7.2', '7.3', '7.4', '8.0'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php_version }} | |
| coverage: none | |
| - run: php bin/ecs check tests-released/Fixture --config tests-released/config/some_ecs.php --ansi --fix |