From 83cdef40110ab7432e881cddbd09faa80e9c586b Mon Sep 17 00:00:00 2001 From: ArrayIterator Date: Thu, 26 Sep 2024 18:07:53 +0700 Subject: [PATCH] remove --no-suggest --- .github/workflows/code-checking.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code-checking.yml b/.github/workflows/code-checking.yml index 453f3ef..55584fa 100644 --- a/.github/workflows/code-checking.yml +++ b/.github/workflows/code-checking.yml @@ -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" @@ -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" @@ -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" @@ -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"