Skip to content

Commit 4e5d543

Browse files
authored
Merge branch 'sinnbeck:main' into add-assert-select-macro
2 parents 4f938ad + 93dabd7 commit 4e5d543

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

.github/workflows/run-tests.yml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,18 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
os: [ubuntu-latest, windows-latest]
20-
php: [8.2, 8.1, 8.0]
21-
laravel: ['9.*', '10.*', '11.*', '12.*']
22-
stability: [prefer-lowest, prefer-stable]
19+
os: [ ubuntu-latest, windows-latest ]
20+
php: [ 8.2, 8.1, 8.0 ]
21+
laravel: [ 9.*, 10.*, 11.*, 12.* ]
2322
include:
2423
- laravel: 9.*
25-
- testbench: 7.*
24+
testbench: 7.*
2625
- laravel: 10.*
27-
testbench: ^8.0
26+
testbench: 8.*
2827
- laravel: 11.*
29-
testbench: ^9.0
28+
testbench: 9.*
3029
- laravel: 12.*
31-
testbench: ^10.0
30+
testbench: 10.*
3231
exclude:
3332
- laravel: 10.*
3433
php: 8.0
@@ -41,7 +40,7 @@ jobs:
4140
- laravel: 12.*
4241
php: 8.0
4342

44-
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
43+
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}
4544

4645
steps:
4746
- name: Checkout code
@@ -62,17 +61,17 @@ jobs:
6261
- name: Install dependencies
6362
run: |
6463
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
65-
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
64+
composer update --prefer-dist --no-interaction
6665
6766
- name: List Installed Dependencies
6867
run: composer show -D
6968

7069
- name: Execute tests
7170
run: vendor/bin/pest
72-
71+
7372
- name: Run PHPStan
7473
shell: bash
7574
run: |
7675
LARAVEL_VERSION="${{ matrix.laravel }}"
7776
LARAVEL_VERSION="${LARAVEL_VERSION%%.*}"
78-
vendor/bin/phpstan analyse -c "phpstan-${LARAVEL_VERSION}.neon" src
77+
vendor/bin/phpstan analyse -c "phpstan-${LARAVEL_VERSION}.neon" src

0 commit comments

Comments
 (0)