From 154fe9f9e3cfa450162e686aca93aee0bb5dc672 Mon Sep 17 00:00:00 2001 From: jekkos Date: Tue, 11 Jun 2024 00:22:41 +0200 Subject: [PATCH] Temporarily remove linter (#3708) --- .github/workflows/test-coding-standards.yml | 64 --------------------- 1 file changed, 64 deletions(-) delete mode 100644 .github/workflows/test-coding-standards.yml diff --git a/.github/workflows/test-coding-standards.yml b/.github/workflows/test-coding-standards.yml deleted file mode 100644 index c98f9c3b4..000000000 --- a/.github/workflows/test-coding-standards.yml +++ /dev/null @@ -1,64 +0,0 @@ -name: Coding Standards - -on: - push: - paths: - - '**.php' - - 'spark' - - '.github/workflows/test-coding-standards.yml' - pull_request: - paths: - - '**.php' - - 'spark' - - '.github/workflows/test-coding-standards.yml' - -concurrency: - group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} - cancel-in-progress: true - -permissions: - contents: read - -jobs: - lint: - name: PHP ${{ matrix.php-version }} Lint with PHP CS Fixer - runs-on: ubuntu-22.04 - - strategy: - fail-fast: false - matrix: - php-version: - - '8.1' - - '8.3' - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php-version }} - extensions: tokenizer - coverage: none - - - name: Get composer cache directory - run: echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV - - - name: Cache dependencies - uses: actions/cache@v4 - with: - path: ${{ env.COMPOSER_CACHE_FILES_DIR }} - key: ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }} - restore-keys: | - ${{ runner.os }}-${{ matrix.php-version }}- - ${{ runner.os }}- - - - name: Install dependencies - run: composer update --ansi --no-interaction - - - name: Run lint on `app/`, `public/` - run: vendor/bin/php-cs-fixer fix --verbose --ansi --dry-run --config=.php-cs-fixer.no-header.php --using-cache=no --diff - - - name: Run lint on `tests` - run: vendor/bin/php-cs-fixer fix --verbose --ansi --dry-run --config=.php-cs-fixer.tests.php --using-cache=no --diff