Skip to content

Commit

Permalink
more matrix magic for L9
Browse files Browse the repository at this point in the history
  • Loading branch information
rudiedirkx committed Apr 21, 2024
1 parent 2c19c0a commit 809175b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@ jobs:
matrix:
php: ['8.1', '8.2', '8.3']
laravel: ['9', '10', '11']
phpunit: ['9', '10']
exclude:
- {php: '8.1', laravel: '11'}
- {phpunit: '9'}
include:
- {laravel: '9', phpunit: '9'}
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -47,7 +51,7 @@ jobs:
composer-${{ runner.os }}-
- name: Install composer dependencies
run: composer require --no-progress --no-interaction illuminate/database:^${{ matrix.laravel }}.0 illuminate/validation:^${{ matrix.laravel }}.0
run: composer require --no-progress --no-interaction illuminate/database:^${{ matrix.laravel }}.0 illuminate/validation:^${{ matrix.laravel }}.0 phpunit/phpunit:^${{ matrix.phpunit }}.0

- name: Run unit tests
run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
Expand Down

0 comments on commit 809175b

Please sign in to comment.