Skip to content

Commit

Permalink
more matrix magic for L9 V
Browse files Browse the repository at this point in the history
  • Loading branch information
rudiedirkx committed Apr 21, 2024
1 parent da7d440 commit 9061a8e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@ env:

jobs:
test:
name: "PHP ${{ matrix.php }} Lara ${{ matrix.laravel }} Unit ${{ matrix.phpunit }}"
name: "Lara ${{ matrix.laravel }} PHP ${{ matrix.php }} Unit ${{ matrix.phpunit }}"
runs-on: ubuntu-latest
strategy:
max-parallel: 6 # 12
fail-fast: false
matrix:
laravel: [9, 10, 11]
php: ['8.1', '8.2', '8.3']
laravel: ['9', '10', '11']
phpunit: ['9', '10']
phpunit: [9, 10]
exclude:
- {php: '8.1', laravel: '11'}
- {laravel: '9', phpunit: '10'}
- {phpunit: '9'}
- {laravel: 11, php: '8.1'}
- {laravel: 9, phpunit: 10}
- {phpunit: 9}
include:
- {php: '8.1', laravel: '9', phpunit: '9'}
- {php: '8.2', laravel: '9', phpunit: '9'}
- {php: '8.3', laravel: '9', phpunit: '9'}
- {laravel: 9, php: '8.1', phpunit: 9}
- {laravel: 9, php: '8.2', phpunit: 9}
- {laravel: 9, php: '8.3', phpunit: 9}
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down

0 comments on commit 9061a8e

Please sign in to comment.