chore: update icons with the latest commit v4ba0c6f9fd87596c7756bb7d2a337edcde4e6f29 #682
Workflow file for this run
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: | |
| pull_request: | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| php: [7.4, '8.0', 8.1, 8.2, 8.3, 8.4, 8.5] | |
| laravel: [8, 9, 10, 11, 12, 13] | |
| exclude: | |
| - php: 7.4 | |
| laravel: 9 | |
| - php: 7.4 | |
| laravel: 10 | |
| - php: 7.4 | |
| laravel: 11 | |
| - php: 7.4 | |
| laravel: 12 | |
| - php: '8.0' | |
| laravel: 10 | |
| - php: '8.0' | |
| laravel: 11 | |
| - php: '8.0' | |
| laravel: 12 | |
| - php: 8.1 | |
| laravel: 11 | |
| - php: 8.1 | |
| laravel: 12 | |
| - php: 8.2 | |
| laravel: 8 | |
| - php: 8.3 | |
| laravel: 8 | |
| - php: 8.3 | |
| laravel: 9 | |
| - php: 8.4 | |
| laravel: 8 | |
| - php: 8.4 | |
| laravel: 9 | |
| - php: 8.4 | |
| laravel: 10 | |
| - php: 8.5 | |
| laravel: 8 | |
| - php: 8.5 | |
| laravel: 9 | |
| - php: 8.5 | |
| laravel: 10 | |
| - php: 8.5 | |
| laravel: 11 | |
| - php: 7.4 | |
| laravel: 13 | |
| - php: '8.0' | |
| laravel: 13 | |
| - php: 8.1 | |
| laravel: 13 | |
| - php: 8.2 | |
| laravel: 13 | |
| name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: dom, curl, libxml, mbstring, zip | |
| coverage: none | |
| - name: Install dependencies | |
| run: | | |
| composer require "illuminate/contracts=^${{ matrix.laravel }}" --prefer-dist --no-interaction --no-update | |
| composer update --prefer-dist --no-interaction --no-progress | |
| - name: Execute tests | |
| run: vendor/bin/phpunit |