Fixed an issue with displaying colors #333
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: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
php: [ "8.2", "8.3" ] | |
laravel: [ "10.0", "11.0" ] | |
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: curl, mbstring, zip, pcntl, pdo, pdo_sqlite, iconv | |
coverage: xdebug | |
- name: Install dependencies | |
run: composer require --dev laravel/framework:^${{ matrix.laravel }} | |
- name: Install Doctrine | |
if: matrix.laravel == '10.0' | |
run: composer require doctrine/dbal | |
- name: Execute tests | |
run: sudo vendor/bin/phpunit |