Multi-domain support, security features, Laravel 11/12 #114
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: run-tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| run-tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php: [8.1, 8.2, 8.3, 8.4, 8.5] | |
| laravel: [10.*, 11.*, 12.*] | |
| include: | |
| - laravel: 10.* | |
| testbench: 8.* | |
| - laravel: 11.* | |
| testbench: 9.* | |
| - laravel: 12.* | |
| testbench: 10.* | |
| exclude: | |
| # Laravel 10 only supports PHP 8.1-8.3 | |
| - php: 8.4 | |
| laravel: 10.* | |
| - php: 8.5 | |
| laravel: 10.* | |
| # Laravel 11+ requires PHP 8.2+ | |
| - php: 8.1 | |
| laravel: 11.* | |
| - php: 8.1 | |
| laravel: 12.* | |
| name: PHP${{ matrix.php }} - Laravel ${{ matrix.laravel }} | |
| steps: | |
| - name: Update apt | |
| run: sudo apt-get update --fix-missing | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| coverage: none | |
| - name: Setup Problem Matches | |
| run: | | |
| echo "::add-matcher::${{ runner.tool_cache }}/php.json" | |
| echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
| - name: Install dependencies | |
| run: | | |
| composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update | |
| composer update --prefer-dist --no-interaction | |
| - name: Execute tests | |
| run: vendor/bin/phpunit |