Delete laravel/migrations/queue/.gitkeep #4716
Workflow file for this run
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: collision-tests | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
matrix: | |
os: | |
- "ubuntu-latest" | |
php: | |
- 8.2 | |
dependencies: | |
- "highest" | |
experimental: | |
- false | |
name: PHP:${{ matrix.php }} on ${{ matrix.os }} (${{ matrix.dependencies }}) | |
steps: | |
- name: Checkout code | |
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, :php-psr | |
coverage: none | |
- name: Install Collision | |
run: | | |
composer require "nunomaduro/collision:^8.0" --dev --no-interaction --no-update | |
- name: Install dependencies | |
uses: "ramsey/composer-install@v3" | |
with: | |
dependency-versions: "${{ matrix.dependencies }}" | |
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 | |
if: matrix.dependencies == 'highest' | |
- name: Execute tests (without deprecations on PHPUnit 10) | |
run: ./testbench package:test --exclude-group commander --exclude-group deprecations | |
env: | |
RAY_ENABLED: false | |
TESTBENCH_CONVERT_DEPRECATIONS_TO_EXCEPTIONS: false | |
if: matrix.dependencies != 'highest' | |
tests-with-coverage: | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
matrix: | |
os: | |
- "ubuntu-latest" | |
php: | |
- 8.2 | |
dependencies: | |
- "highest" | |
experimental: | |
- false | |
name: PHP:${{ matrix.php }} with Coverage on ${{ matrix.os }} (${{ matrix.dependencies }}) | |
steps: | |
- name: Checkout code | |
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, :php-psr | |
coverage: xdebug | |
- name: Install Collision | |
run: | | |
composer require "nunomaduro/collision:^8.0" --dev --no-interaction --no-update | |
- name: Install dependencies | |
uses: "ramsey/composer-install@v3" | |
with: | |
dependency-versions: "${{ matrix.dependencies }}" | |
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 --exclude-group deprecations | |
env: | |
RAY_ENABLED: false | |
TESTBENCH_CONVERT_DEPRECATIONS_TO_EXCEPTIONS: false |