We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f433a65 + 6a24e92 commit b03e05bCopy full SHA for b03e05b
1 file changed
.github/workflows/ci.yml
@@ -14,6 +14,12 @@ jobs:
14
steps:
15
- uses: actions/checkout@v2
16
17
+ - name: Setup PHP with Xdebug 2.x
18
+ uses: shivammathur/setup-php@v2
19
+ with:
20
+ php-version: '7.4'
21
+ coverage: xdebug2
22
+
23
- name: Validate composer.json and composer.lock
24
run: composer validate
25
@@ -28,7 +34,7 @@ jobs:
28
34
29
35
- name: Install dependencies
30
36
if: steps.composer-cache.outputs.cache-hit != 'true'
31
- run: composer install --prefer-dist --no-progress --no-suggest
37
+ run: composer install --prefer-dist --no-progress --no-suggest --ignore-platform-reqs
32
38
33
39
- name: Run test suite
40
run: composer run-script test
0 commit comments