We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ed0f1a6 + 3cd5615 commit ed0d7f9Copy full SHA for ed0d7f9
2 files changed
.github/workflows/php.yml
@@ -11,7 +11,7 @@ jobs:
11
runs-on: ubuntu-latest
12
strategy:
13
matrix:
14
- php-version: [ '8.3', '8.4' ]
+ php-version: [ '8.4' ]
15
16
steps:
17
- uses: actions/checkout@v4
@@ -20,11 +20,11 @@ jobs:
20
uses: shivammathur/setup-php@v2
21
with:
22
php-version: ${{ matrix.php-version }}
23
- coverage: none
+ coverage: xdebug
24
tools: composer:v2
25
26
- name: Validate composer.json and composer.lock
27
- run: ./composer.phar validate --strict
+ run: ./composer.phar validate --strict --no-check-lock
28
29
- name: Cache Composer packages
30
uses: actions/cache@v4
@@ -38,4 +38,6 @@ jobs:
38
run: ./composer.phar install --prefer-dist --no-progress
39
40
- name: Run test suite
41
+ env:
42
+ XDEBUG_MODE: coverage
43
run: ./composer.phar test
0 commit comments