diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index d50e3a1..8a74d6a 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -13,23 +13,44 @@ jobs: strategy: matrix: - php-versions: ['8.2', '8.3'] # Adjust PHP versions as needed - laravel-versions: ['^8.0', '^9.0', '^10.0', '^11.0'] # Adjust Laravel versions as needed + php: [8.0, 8.1, 8.2] + laravel: ['9.*', '10.*', '11.*'] + dependency-version: [prefer-lowest, prefer-stable] + include: + - laravel: 10.* + testbench: 8.* + phpunit: 10.* + - laravel: 9.* + testbench: 7.* + phpunit: 9.* + - laravel: 11.* + testbench: 9.* + phpunit: 10.* + exclude: + - laravel: 10.* + php: 8.0 + - laravel: 11.* + php: 8.0 + - laravel: 11.* + php: 8.1 + + name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} steps: - - uses: actions/checkout@v4 - - - name: Set up PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php-versions }} - extensions: mbstring, dom, curl, pdo_mysql - tools: composer, phpunit - - - name: Install Dependencies - run: composer install --no-progress --prefer-dist - - - name: Run Tests - run: vendor/bin/phpunit - + - name: Checkout code + uses: actions/checkout@v1 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick + coverage: none + + - name: Install dependencies + run: | + composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "phpunit/phpunit:${{ matrix.phpunit }}" --no-interaction --no-update + composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest + - name: Execute tests + run: vendor/bin/phpunit # Add additional steps if necessary, like linting, code style checks, etc. diff --git a/composer.json b/composer.json index 1740ef5..c827dea 100644 --- a/composer.json +++ b/composer.json @@ -28,8 +28,8 @@ } }, "require": { - "php": "^8.2", - "illuminate/support": "^8.71|^9.0|^10.0|^11.0" + "php": "^8.0", + "laravel/framework": "^9.0|^10.0|^11.0" }, "scripts": { "test": "vendor/bin/phpunit" @@ -42,7 +42,7 @@ } }, "require-dev": { - "phpunit/phpunit": "^11.0", + "phpunit/phpunit": "^10.0", "laravel/pint": "^1.14" } }