Skip to content

Commit

Permalink
Merge pull request #111 from laravel-shift/l11-compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
gauravmak authored Jul 25, 2024
2 parents a438858 + 7984531 commit 97025ac
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 41 deletions.
87 changes: 48 additions & 39 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,43 +1,52 @@
name: run-tests

on: [push, pull_request]
on:
- push
- pull_request

jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.2, 8.1, 8.0]
laravel: [9.*, 10.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*
exclude:
- laravel: 10.*
php: 8.0

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
tools: composer:v2

- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --prefer-dist --no-interaction --${{ matrix.dependency-version }} --no-suggest
- name: Execute tests
run: vendor/bin/phpunit
tests:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.2, 8.1, 8.0]
laravel: ['9.*', '10.*', '11.*']
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
exclude:
- laravel: 10.*
php: 8.0
- laravel: 11.*
php: 8.1
- laravel: 11.*
php: 8.0

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
tools: composer:v2

- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --prefer-dist --no-interaction --${{ matrix.dependency-version }} --no-suggest
- name: Execute tests
run: vendor/bin/phpunit
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"description": "Ajax support of DataTables for Laravel",
"require": {
"php": "^8.0",
"illuminate/support": "^9.33.0|^10.0"
"illuminate/support": "^9.33.0|^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^7.9|^8.0",
"orchestra/testbench": "^7.9|^8.0|^9.0",
"phpunit/phpunit": "^9.3.9|^10.0",
"laravel/legacy-factories": "^1.3.0"
},
Expand Down

0 comments on commit 97025ac

Please sign in to comment.