tests #425
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: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
tests-on-phpunit-10: | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
matrix: | |
os: | |
- "ubuntu-latest" | |
php: | |
- 8.1 | |
- 8.2 | |
phpunit: | |
- "~10.1.0" | |
- "~10.2.0" | |
dependencies: | |
- "highest" | |
- "lowest" | |
experimental: | |
- false | |
name: PHP${{ matrix.php }} with PHPUnit${{ matrix.phpunit }} on ${{ matrix.os }} (${{ matrix.dependencies }}) | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, sqlite3, pdo_sqlite, pdo_mysql, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo | |
coverage: none | |
- name: Install PHPUnit ${{ matrix.phpunit }} | |
run: | | |
composer require "phpunit/phpunit:${{ matrix.phpunit }}" --dev --no-interaction --no-update | |
- 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: Create database | |
run: php ./create-sqlite-db | |
- name: Start Chrome Driver | |
run: vendor/laravel/dusk/bin/chromedriver-linux & | |
- name: Execute tests | |
run: vendor/bin/phpunit -c phpunit.xml | |
env: | |
RAY_ENABLED: false | |
- name: Upload Failed Screenshots | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: screenshots | |
path: tests/Browser/screenshots/* | |
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" | |
dependencies: | |
- "highest" | |
- "lowest" | |
experimental: | |
- false | |
name: PHP${{ matrix.php }} with PHPUnit${{ matrix.phpunit }} on ${{ matrix.os }} (${{ matrix.dependencies }}) | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, sqlite3, pdo_sqlite, pdo_mysql, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo | |
coverage: none | |
- name: Install PHPUnit ${{ matrix.phpunit }} | |
run: | | |
composer require "phpunit/phpunit:${{ matrix.phpunit }}" --dev --no-interaction --no-update | |
- 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: Create database | |
run: php ./create-sqlite-db | |
- name: Start Chrome Driver | |
run: vendor/laravel/dusk/bin/chromedriver-linux & | |
- name: Execute tests | |
run: vendor/bin/phpunit | |
- name: Upload Failed Screenshots | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: screenshots | |
path: tests/Browser/screenshots/* | |