Skip to content

Commit

Permalink
remove --no-suggest
Browse files Browse the repository at this point in the history
  • Loading branch information
ArrayIterator committed Sep 26, 2024
1 parent 5abfe6a commit 83cdef4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/code-checking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: "Validate composer.json"
run: php $(which composer) validate --strict
- name: "Install dependencies with composer"
run: php $(which composer) install --no-interaction --no-progress --no-suggest
run: php $(which composer) install --no-interaction --no-progress
- name: "Run PHP CodeSniffer"
run: php vendor/bin/phpcs --standard=phpcs.xml
- name: "Run PHPStan"
Expand All @@ -41,7 +41,7 @@ jobs:
- name: "Validate composer.json"
run: php $(which composer) validate --strict
- name: "Install dependencies with composer"
run: php $(which composer) install --no-interaction --no-progress --no-suggest
run: php $(which composer) install --no-interaction --no-progress
- name: "Run PHP CodeSniffer"
run: php vendor/bin/phpcs --standard=phpcs.xml
- name: "Run PHPStan"
Expand All @@ -61,7 +61,7 @@ jobs:
- name: "Validate composer.json"
run: php $(which composer) validate --strict
- name: "Install dependencies with composer"
run: php $(which composer) install --no-interaction --no-progress --no-suggest
run: php $(which composer) install --no-interaction --no-progress
- name: "Run PHP CodeSniffer"
run: php vendor/bin/phpcs --standard=phpcs.xml
- name: "Run PHPStan"
Expand All @@ -81,7 +81,7 @@ jobs:
- name: "Validate composer.json"
run: php $(which composer) validate --strict
- name: "Install dependencies with composer"
run: php $(which composer) install --no-interaction --no-progress --no-suggest
run: php $(which composer) install --no-interaction --no-progress
- name: "Run PHP CodeSniffer"
run: php vendor/bin/phpcs --standard=phpcs.xml
- name: "Run PHPStan"
Expand Down

0 comments on commit 83cdef4

Please sign in to comment.