[8.x] Overrides ServeCommand::trap() method to use `TerminatingCons…
#6064
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: collision-tests | |
| on: | |
| push: | |
| branches: | |
| - '*.x' | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| tests: | |
| runs-on: "ubuntu-latest" | |
| continue-on-error: ${{ matrix.experimental }} | |
| strategy: | |
| matrix: | |
| php: | |
| - 8.1 | |
| - 8.2 | |
| - 8.3 | |
| experimental: | |
| - false | |
| name: PHP:${{ matrix.php }} / Collision:^7.4 ⬆️ | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, mysql, mysqli, pdo_mysql, bcmath, intl, fileinfo, :php-psr | |
| coverage: none | |
| - name: Install Collision | |
| run: | | |
| composer require "phpunit/phpunit:^10.1" --dev --no-interaction --no-update | |
| composer require "nunomaduro/collision:^7.4" --dev --no-interaction --no-update | |
| - name: Install dependencies | |
| uses: ramsey/composer-install@v4 | |
| with: | |
| dependency-versions: "highest" | |
| composer-options: "--prefer-dist --prefer-stable --no-cache" | |
| - name: Installed dependencies | |
| run: | | |
| composer show -D | |
| - name: Execute tests (with deprecations on PHPUnit 10) | |
| run: ./testbench package:test --exclude-group commander | |
| env: | |
| RAY_ENABLED: false | |
| tests-with-coverage: | |
| runs-on: "ubuntu-latest" | |
| continue-on-error: ${{ matrix.experimental }} | |
| strategy: | |
| matrix: | |
| php: | |
| - 8.1 | |
| - 8.2 | |
| - 8.3 | |
| experimental: | |
| - false | |
| name: PHP:${{ matrix.php }} / Collision:^6.4 Code Coverage ⬆️ | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, mysql, mysqli, pdo_mysql, bcmath, intl, fileinfo, :php-psr | |
| coverage: xdebug | |
| - name: Install Collision | |
| run: | | |
| composer require "phpunit/phpunit:^9.6" --dev --no-interaction --no-update | |
| composer require "nunomaduro/collision:^6.4" --dev --no-interaction --no-update | |
| - name: Install dependencies | |
| uses: ramsey/composer-install@v4 | |
| with: | |
| dependency-versions: "highest" | |
| composer-options: "--prefer-dist --prefer-stable --no-cache" | |
| - name: Installed dependencies | |
| run: | | |
| composer show -D | |
| - name: Execute tests | |
| run: ./testbench package:test --coverage --exclude-group commander,deprecations | |
| env: | |
| RAY_ENABLED: false | |
| TESTBENCH_CONVERT_DEPRECATIONS_TO_EXCEPTIONS: false |