File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 32
32
uses : " docker://ergebnis/composer-root-version-action:0.1.3"
33
33
34
34
- name : " Update dependencies with composer"
35
- run : " php7.3 ./tools/composer update --no-ansi --no-interaction --no-progress --no-suggest "
35
+ run : " php7.3 ./tools/composer update --no-ansi --no-interaction --no-progress"
36
36
37
37
- name : " Run vimeo/psalm"
38
38
run : " php7.3 ./tools/psalm --config=.psalm/config.xml --no-progress --shepherd --show-info=false --stats"
@@ -76,11 +76,11 @@ jobs:
76
76
77
77
- name : " Install lowest dependencies with composer"
78
78
if : " matrix.dependencies == 'lowest'"
79
- run : " ./tools/composer update --no-ansi --no-interaction --no-progress --no-suggest -- prefer-lowest"
79
+ run : " ./tools/composer update --no-ansi --no-interaction --no-progress --prefer-lowest"
80
80
81
81
- name : " Install highest dependencies with composer"
82
82
if : " matrix.dependencies == 'highest'"
83
- run : " ./tools/composer update --no-ansi --no-interaction --no-progress --no-suggest "
83
+ run : " ./tools/composer update --no-ansi --no-interaction --no-progress"
84
84
85
85
- name : " Run tests with phpunit/phpunit"
86
86
run : " vendor/bin/phpunit --coverage-clover=coverage.xml"
Original file line number Diff line number Diff line change 13
13
<arg value =" --no-interaction" />
14
14
<arg value =" --no-progress" />
15
15
<arg value =" --no-ansi" />
16
- <arg value =" --no-suggest" />
17
16
</exec >
18
17
</target >
19
18
You can’t perform that action at this time.
0 commit comments