Skip to content

Commit 85bae41

Browse files
committed
Run tests with PHP 8.4
1 parent 2074da3 commit 85bae41

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/build-ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,19 @@ jobs:
2323
- "8.1"
2424
- "8.2"
2525
- "8.3"
26+
- "8.4"
2627
laravel:
2728
- "10.*"
2829
- "11.*"
2930
include:
3031
- php: "8.1"
3132
laravel: "10.*"
3233
mongodb: "5.0"
33-
mode: "low-deps"
34+
mode: "--prefer-lowest"
35+
- php: "8.4"
36+
laravel: "11.*"
37+
mongodb: "7.0"
38+
mode: "--ignore-platform-reqs"
3439
exclude:
3540
- php: "8.1"
3641
laravel: "11.*"
@@ -80,7 +85,7 @@ jobs:
8085
restore-keys: "${{ matrix.os }}-composer-"
8186

8287
- name: "Install dependencies"
83-
run: composer update --no-interaction $([[ "${{ matrix.mode }}" == low-deps ]] && echo ' --prefer-lowest')
88+
run: composer update --no-interaction ${{ matrix.mode }}
8489
- name: "Run tests"
8590
run: "./vendor/bin/phpunit --coverage-clover coverage.xml"
8691
env:

0 commit comments

Comments
 (0)