Add Laravel 13 CI coverage and support new Slack message class in Discord channel #390
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: tests | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| php: [8.1, 8.2, 8.3] | |
| laravel: ['10.*', '11.*', '12.*'] | |
| exclude: | |
| - laravel: 11.* | |
| php: 8.1 | |
| - laravel: 12.* | |
| php: 8.1 | |
| name: P${{ matrix.php }} - L${{ matrix.laravel }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: dom, curl, libxml, mbstring, zip | |
| tools: composer:v2 | |
| coverage: none | |
| - name: Install dependencies | |
| run: | | |
| composer require "illuminate/contracts=${{ matrix.laravel }}" --no-update | |
| composer update --prefer-dist --no-interaction --no-progress | |
| - name: Execute tests | |
| run: vendor/bin/phpunit tests |