Bump eslint-config-prettier from 9.1.0 to 10.1.8 #256
This file contains hidden or 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: phpunit | |
| on: | |
| push: | |
| branches: | |
| - 1.x | |
| pull_request: | |
| branches: | |
| - 1.x | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| php: ['8.0', '8.1', '8.2', '8.3', '8.4', '8.5'] | |
| laravel: ['9.*', '10.*', '11.*', '12.*', '13.*'] | |
| os: [ubuntu-latest] | |
| include: | |
| - laravel: '9.*' | |
| testbench: '^7.0' | |
| - laravel: '10.*' | |
| testbench: '^8.0' | |
| - laravel: '11.*' | |
| testbench: '^9.0' | |
| - laravel: '12.*' | |
| testbench: '^10.0' | |
| - laravel: '13.*' | |
| testbench: '^11.0' | |
| exclude: | |
| # PHP 8.0 only supports Laravel 9 | |
| - laravel: '10.*' | |
| php: '8.0' | |
| - laravel: '11.*' | |
| php: '8.0' | |
| - laravel: '12.*' | |
| php: '8.0' | |
| - laravel: '13.*' | |
| php: '8.0' | |
| # PHP 8.1 only supports Laravel 9 and 10 | |
| - laravel: '11.*' | |
| php: '8.1' | |
| - laravel: '12.*' | |
| php: '8.1' | |
| - laravel: '13.*' | |
| php: '8.1' | |
| # Laravel 13 requires PHP ^8.3 | |
| - laravel: '13.*' | |
| php: '8.2' | |
| name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup PHP, with composer and extensions | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| coverage: none | |
| - name: Validate composer.json | |
| run: composer validate | |
| - name: Get composer cache directory | |
| id: composer-cache | |
| run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
| - name: Cache Composer packages | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.dir }} | |
| key: ${{ runner.os }}-${{ matrix.php }}-${{ matrix.laravel }}-composer-${{ hashFiles('**/composer.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-${{ matrix.php }}-${{ matrix.laravel }}-composer- | |
| - name: Install dependencies | |
| run: | | |
| composer config --global -- policy.advisories.block false | |
| composer require "illuminate/support:${{ matrix.laravel }}" "illuminate/filesystem:${{ matrix.laravel }}" "illuminate/view:${{ matrix.laravel }}" --no-interaction --no-update | |
| composer require --dev "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update | |
| composer update --prefer-dist --no-interaction --no-progress | |
| - name: Run test suite | |
| run: vendor/bin/phpunit |