diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 37514a3..2f001b8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,43 +2,46 @@ name: Tests on: push: - branches: [ main, develop ] + branches: + - main + - develop pull_request: - branches: [ main, develop ] + branches: + - main + - develop jobs: build: - runs-on: ubuntu-latest strategy: fail-fast: true matrix: php: [8.2, 8.3, 8.4] - laravel: [11] + laravel: [11, '12'] steps: - - name: Checkout Code - uses: actions/checkout@v4 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php }} - extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd - tools: composer:v2 - coverage: none - ini-values: error_reporting=E_ALL - - - name: Set Laravel Version - run: composer require "illuminate/database:^${{ matrix.laravel }}" --no-update - - - name: Install dependencies - uses: nick-fields/retry@v3 - with: - timeout_minutes: 5 - max_attempts: 5 - command: composer update --prefer-dist --no-interaction --no-progress - - - name: Execute tests - run: vendor/bin/phpunit + - name: Checkout Code + uses: actions/checkout@v4 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd + tools: composer:v2 + coverage: none + ini-values: error_reporting=E_ALL + + - name: Set Laravel Version + run: composer require "illuminate/database:^${{ matrix.laravel }}" --no-update + + - name: Install dependencies + uses: nick-fields/retry@v3 + with: + timeout_minutes: 5 + max_attempts: 5 + command: composer update --prefer-dist --no-interaction --no-progress + + - name: Execute tests + run: vendor/bin/phpunit diff --git a/composer.json b/composer.json index 6d0d268..5cf77e2 100644 --- a/composer.json +++ b/composer.json @@ -25,14 +25,14 @@ "require": { "php": "^8.2", "ext-json": "*", - "illuminate/database": "^11.0", - "illuminate/pagination": "^11.0", - "illuminate/support": "^11.0", + "illuminate/database": "^11.0|^12.0", + "illuminate/pagination": "^11.0|^12.0", + "illuminate/support": "^11.0|^12.0", "laravel-json-api/eloquent": "^4.4" }, "require-dev": { - "orchestra/testbench": "^9.0", - "phpunit/phpunit": "^10.5" + "orchestra/testbench": "^9.0|^10.0", + "phpunit/phpunit": "^10.5|^11.5.3" }, "autoload": { "psr-4": {