Skip to content

Commit

Permalink
try out different matrix structure
Browse files Browse the repository at this point in the history
  • Loading branch information
zachflower committed Feb 18, 2024
1 parent 883c0f9 commit e98a7a2
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,25 @@ jobs:

strategy:
matrix:
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3']
laravel-versions: ['8.*', '9.*', '10.*']
include:
- php-version: 7.4
laravel-versions: ['8.*', '9.*', '10.*']
- php-version: 8.0
laravel-versions: ['8.*', '9.*', '10.*']
- php-version: 8.1
laravel-versions: ['8.*', '9.*', '10.*']
- php-version: 8.2
laravel-versions: ['8.*', '9.*', '10.*']
- php-version: 8.3
laravel-versions: ['8.*', '9.*', '10.*']

steps:
- uses: actions/checkout@v2

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

- name: Validate composer.json and composer.lock
Expand Down

0 comments on commit e98a7a2

Please sign in to comment.