Skip to content

Commit 08b9912

Browse files
committed
Fix CI dependency matrix
1 parent bba1455 commit 08b9912

3 files changed

Lines changed: 94 additions & 75 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,13 @@ jobs:
5151
run: vendor/bin/rector --dry-run
5252

5353
- name: Run tests
54-
env:
55-
XDEBUG_MODE: coverage
5654
run: |
5755
mkdir -p build
58-
vendor/bin/phpunit
56+
if [ "${{ matrix.php }}" = "8.3" ]; then
57+
XDEBUG_MODE=coverage vendor/bin/phpunit
58+
else
59+
vendor/bin/phpunit --no-coverage
60+
fi
5961
6062
- name: Upload coverage to Coveralls
6163
if: matrix.php == '8.3'

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@
6969
]
7070
},
7171
"config": {
72+
"platform": {
73+
"php": "8.3.30"
74+
},
7275
"sort-packages": true,
7376
"allow-plugins": {
7477
"php-http/discovery": true

composer.lock

Lines changed: 86 additions & 72 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)