We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aff60b commit 8190486Copy full SHA for 8190486
.github/workflows/main.yml
@@ -24,8 +24,13 @@ jobs:
24
- name: Validate composer.json and composer.lock
25
run: composer validate
26
27
- - name: Install dependencies
28
- run: composer install --prefer-dist --no-progress --no-interaction --no-suggest
+ - name: Install dependencies on PHP 7
+ if: matrix.php < 8
29
+ run: composer install --prefer-dist --no-progress --no-interaction
30
+
31
+ - name: Install dependencies on PHP 8
32
+ if: matrix.php == 8
33
+ run: composer install --prefer-dist --no-progress --no-interaction --ignore-platform-req=php
34
35
- name: Run test suite
36
run: php vendor/bin/codecept run
0 commit comments