We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c624870 commit 1b60632Copy full SHA for 1b60632
.github/workflows/tests.yml
@@ -20,7 +20,7 @@ jobs:
20
fail-fast: true
21
matrix:
22
php: [8.1, 8.2, 8.3]
23
- laravel: [10, 11]
+ laravel: [10, 11, 12]
24
include:
25
- php: 8.4
26
laravel: 11
@@ -52,9 +52,4 @@ jobs:
52
composer update --prefer-dist --no-interaction --no-progress --with="illuminate/contracts=^${{ matrix.laravel }}"
53
54
- name: Execute tests
55
- if: ${{ matrix.php == 8.1 }}
56
- run: vendor/bin/phpunit --testsuite="Feature"
57
-
58
- - name: Execute tests
59
- if: ${{ matrix.php != 8.1 }}
60
- run: vendor/bin/phpunit
+ run: vendor/bin/phpunit ${{ matrix.php == 8.1 && '--testsuite="Feature"' || '' }}
0 commit comments