Fix minimum PHP version #28
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
| # This workflow is used to test the main workflow on this repository. | |
| # It is not designed to be used by other repositories. | |
| name: Test | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| coding-standard-test: | |
| name: Coding Standard Test | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php-version: | |
| - "8.2" | |
| - "8.3" | |
| - "8.4" | |
| - "8.5" | |
| uses: ./.github/workflows/coding-standard.yml | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| config-file: ecs-test.php |