Skip to content

Commit

Permalink
Test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
conroyp committed Apr 25, 2024
1 parent c5fa9cf commit 8b1d226
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 20 deletions.
55 changes: 38 additions & 17 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -42,7 +42,7 @@
}
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"phpunit/phpunit": "^10.0",
"laravel/pint": "^1.14"
}
}

0 comments on commit 8b1d226

Please sign in to comment.