diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 798806c..627323a 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -19,12 +19,6 @@ jobs: - name: Install dependencies run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist - - name: Lint YAML - run: php bin/console lint:yaml .github/workflows --parse-tags - - - name: Lint Container - run: php bin/console lint:container - - name: Lint Markdown uses: DavidAnson/markdownlint-cli2-action@v17 diff --git a/.github/workflows/php_unit.yaml b/.github/workflows/php_unit.yaml index fa7a5b5..2b322dc 100644 --- a/.github/workflows/php_unit.yaml +++ b/.github/workflows/php_unit.yaml @@ -19,12 +19,8 @@ jobs: - name: Install dependencies run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist - - name: Install PHPUnit - working-directory: ./vendor-bin/phpunit - run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist - - name: Run PHPUnit - run: vendor-bin/phpunit/vendor/bin/phpunit --display-skipped --no-progress --coverage-clover ./clover.xml + run: vendor/bin/phpunit --display-skipped --no-progress --coverage-clover ./clover.xml - name: Upload coverage to Codecov uses: codecov/codecov-action@v4.6.0 diff --git a/composer.json b/composer.json index b4f65ec..da28e4c 100644 --- a/composer.json +++ b/composer.json @@ -73,11 +73,6 @@ } }, "scripts": { - "app-lint": [ - "@php bin/console lint:yaml .github/workflows --parse-tags", - "@php bin/console lint:container", - "@composer validate --strict" - ], "app-fixer": "vendor-bin/php-cs-fixer/vendor/bin/php-cs-fixer fix --diff --dry-run", "app-fixer-fix": "vendor-bin/php-cs-fixer/vendor/bin/php-cs-fixer fix --diff", "app-rector": "vendor-bin/rector/vendor/bin/rector process --dry-run --config rector.php",