From 5cb62be2e5fa6ade86ab93c0d15f349568d6d92c Mon Sep 17 00:00:00 2001 From: Adam Daley Date: Mon, 27 Nov 2023 01:55:22 +0000 Subject: [PATCH] Remove Spellcheck and PHPStan workflows --- .github/workflows/phpstan.yml | 37 -------------------------------- .github/workflows/spellcheck.yml | 36 ------------------------------- 2 files changed, 73 deletions(-) delete mode 100644 .github/workflows/phpstan.yml delete mode 100644 .github/workflows/spellcheck.yml diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml deleted file mode 100644 index 69817db..0000000 --- a/.github/workflows/phpstan.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: PHPStan - -on: - workflow_call: - inputs: - config_file: - description: Configuration file location - default: phpstan.neon - required: false - type: string - memory_limit: - description: Memory limit for analysis - required: false - type: string - php_version: - description: Version of PHP to use - default: latest - required: false - type: string - version: - description: Version of PHPStan to use - default: composer - required: false - type: string - -jobs: - phpstan: - name: Perform PHP Static Analysis - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: php-actions/phpstan@v3 - with: - configuration: ${{ inputs.config_file }} - memory_limit: ${{ inputs.memory_limit }} - php_version: ${{ inputs.php_version }} - version: ${{ inputs.version }} \ No newline at end of file diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml deleted file mode 100644 index e0e4ccd..0000000 --- a/.github/workflows/spellcheck.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Spellcheck - -on: - workflow_call: - inputs: - config-path: - description: 'Directory where cspell.json is located' - required: false - type: string - incremental-only: - description: 'Limit files checked to those in pull request/push' - default: true - required: false - type: boolean - root-path: - description: 'Directory in tree to begin spell check' - required: false - type: string - strict: - description: 'Spelling issues should cause failure' - default: true - required: false - type: boolean - -jobs: - spellcheck: - name: Perform Spell Check - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: streetsidesoftware/cspell-action@v5 - with: - config: ${{ inputs.config-path }} - root: ${{ inputs.root-path }} - strict: ${{ inputs.strict }} - incremental_files_only: ${{ inputs.incremental-only }} \ No newline at end of file