Added installation chrome #3490
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] | |
jobs: | |
phpunit: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [8.3, 8.2, 8.1] | |
os: [ubuntu-latest, windows-latest] | |
laravel: ["11.*", "10.*",] | |
dependency-version: [prefer-lowest, prefer-stable] | |
include: | |
- laravel: 11.* | |
testbench: 9.* | |
- laravel: 10.* | |
testbench: 8.* | |
exclude: | |
- laravel: 10.* | |
php: 8.0 | |
- laravel: 11.* | |
php: 8.1 | |
name: P${{ matrix.php }} - ${{ matrix.os }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} | |
steps: | |
- name: Checkout code 🛎️ | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Cache dependencies 🔧 | |
uses: actions/cache@v4 | |
with: | |
path: ~/.composer/cache/files | |
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} | |
- name: Setup PHP 🔧 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo | |
coverage: none | |
tools: composer:v2 | |
- name: Install dependencies 🔧 | |
run: | | |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update | |
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction | |
- name: Execute tests (Unit and Feature tests) via PHPUnit 🧪 | |
run: vendor/bin/phpunit --no-coverage | |
dusk: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Setup PHP 🔧 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick | |
coverage: none | |
tools: composer:v2 | |
- name: Install Dependencies | |
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | |
- name: Make SQLite database | |
run: vendor/bin/testbench-dusk workbench:create-sqlite-db | |
- name: Update Dusk Chromedriver | |
run: | | |
vendor/bin/dusk-updater update | |
vendor/bin/dusk-updater detect | |
vendor/bin/testbench-dusk dusk:chrome-driver | |
- name: Execute Unit Tests | |
run: vendor/bin/phpunit --testsuite=Browser --no-coverage | |
env: | |
RUNNING_IN_CI: true | |
- name: Upload Failed Screenshots | |
uses: actions/[email protected] | |
if: failure() | |
with: | |
name: screenshots | |
path: tests/Browser/screenshots/* |