File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 31
31
32
32
- name : Install dependencies
33
33
run : |
34
- composer update --prefer-dist --no-suggest --no-progress
34
+ composer update --prefer-dist --no-suggest --no-progress --no-interaction
35
35
36
36
- name : Check Code Style
37
37
run : vendor/bin/phpcs --report-full --report-checkstyle=./phpcs-report.xml
Original file line number Diff line number Diff line change @@ -56,21 +56,21 @@ jobs:
56
56
# Remove the coding standards package as it has a higher minimum PHP
57
57
# requirement and would prevent running the tests on older PHP versions.
58
58
- name : ' Composer: remove CS dependency'
59
- run : composer remove --dev --no-update dms/coding-standard
59
+ run : composer remove --dev --no-update dms/coding-standard --no-interaction
60
60
61
61
- name : ' Composer: update PHPUnit for testing lowest'
62
62
if : ${{ matrix.dependency-version == 'prefer-lowest' }}
63
- run : composer require --no-update phpunit/phpunit:"^9.0"
63
+ run : composer require --no-update phpunit/phpunit:"^9.0" --no-interaction
64
64
65
65
- name : Install dependencies - normal
66
66
if : ${{ matrix.php < 8.1 }}
67
67
run : |
68
- composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress
68
+ composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress --no-interaction
69
69
70
70
- name : Install dependencies - ignore platform reqs
71
71
if : ${{ matrix.php >= 8.1 }}
72
72
run : |
73
- composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress --ignore-platform-reqs
73
+ composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress --ignore-platform-reqs --no-interaction
74
74
75
75
- name : Execute Unit Tests
76
76
run : vendor/bin/phpunit
You can’t perform that action at this time.
0 commit comments