wip #96
This file contains 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: tests | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
tests-on-phpunit-10: | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
matrix: | |
os: | |
- "ubuntu-latest" | |
php: | |
- 8.1 | |
- 8.2 | |
- 8.3 | |
phpunit: | |
- "~10.1.0" | |
- "~10.4.0" | |
dependencies: | |
- "highest" | |
- "lowest" | |
experimental: | |
- false | |
name: PHP${{ matrix.php }} with PHPUnit${{ matrix.phpunit }} on ${{ matrix.os }} (${{ matrix.dependencies }}) | |
steps: | |
- name: Checkout repository and submodules | |
uses: actions/checkout@v4 | |
- 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 | |
coverage: none | |
- name: Install PHPUnit ${{ matrix.phpunit }} | |
run: | | |
composer require "phpunit/phpunit:${{ matrix.phpunit }}" --no-interaction --no-update --dev | |
- name: Install dependencies | |
uses: "ramsey/composer-install@v2" | |
with: | |
dependency-versions: "${{ matrix.dependencies }}" | |
composer-options: "--prefer-dist --no-cache" | |
- name: Installed dependencies | |
run: composer show -D | |
- name: Execute tests | |
run: composer run test | |
env: | |
RAY_ENABLED: false | |
tests-on-phpunit-9: | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
matrix: | |
os: | |
- "ubuntu-latest" | |
php: | |
- 8.1 | |
- 8.2 | |
phpunit: | |
- "~9.6.0" | |
dependencies: | |
- "highest" | |
- "lowest" | |
experimental: | |
- true | |
name: PHP${{ matrix.php }} with PHPUnit${{ matrix.phpunit }} on ${{ matrix.os }} (${{ matrix.dependencies }}) | |
steps: | |
- name: Checkout repository and submodules | |
uses: actions/checkout@v4 | |
- 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 | |
coverage: none | |
- name: Install PHPUnit ${{ matrix.phpunit }} | |
run: | | |
composer require "phpunit/phpunit:${{ matrix.phpunit }}" --no-interaction --no-update --dev | |
- name: Install dependencies | |
uses: "ramsey/composer-install@v2" | |
with: | |
dependency-versions: "${{ matrix.dependencies }}" | |
composer-options: "--prefer-dist --no-cache" | |
- name: Installed dependencies | |
run: composer show -D | |
- name: Execute tests | |
run: vendor/bin/phpunit --no-coverage --no-configuration --dont-report-useless-tests --bootstrap vendor/autoload.php tests | |
env: | |
RAY_ENABLED: false | |
TESTBENCH_CONVERT_DEPRECATIONS_TO_EXCEPTIONS: true |