From fdc3d59f1956e0e0f43037c9b79e3c19b7b57520 Mon Sep 17 00:00:00 2001 From: David Marland Date: Sun, 7 Aug 2022 14:39:15 +0100 Subject: [PATCH] What if they didn't run? --- .github/workflows/ci.yml | 22 +++++++++++----------- app/composer.json | 10 ---------- 2 files changed, 11 insertions(+), 21 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0dff62d..d9f10c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,17 +31,17 @@ jobs: with: php-version: 8.0 - # - name: Install Composer dependencies - # run: composer install --prefer-dist --no-interaction --dev -# - # - name: Run test suite - # run: composer run test -# - # - name: PHPStan - # run: composer run stan -# - # - name: CodeStyle - # run: composer run cs + - name: Install Composer dependencies + run: composer install --prefer-dist --no-interaction --dev + + - name: Run test suite + run: composer run test + + - name: PHPStan + run: composer run stan + + - name: CodeStyle + run: composer run cs - name: Install Prod dependencies run: composer install --prefer-dist --no-interaction --no-dev --optimize-autoloader diff --git a/app/composer.json b/app/composer.json index c67f5f7..0632e81 100644 --- a/app/composer.json +++ b/app/composer.json @@ -65,16 +65,6 @@ "symfony/polyfill-php56": "*" }, "scripts": { - "auto-scripts": { - "cache:clear": "symfony-cmd", - "assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd" - }, - "post-install-cmd": [ - "@auto-scripts" - ], - "post-update-cmd": [ - "@auto-scripts" - ], "test": "phpunit", "loc": "phploc src tests bin", "cbf": "phpcbf src tests bin",