From 29a613e07a8986870824e8417cbcfb1d4076a415 Mon Sep 17 00:00:00 2001 From: William Asaba Date: Mon, 1 Dec 2025 21:31:45 +0300 Subject: [PATCH] refactor: remove code formatters --- .github/workflows/run-tests.yml | 42 --------------------------------- 1 file changed, 42 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 7f992b4..41bf0c6 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -61,45 +61,3 @@ jobs: - name: Execute tests run: vendor/bin/pest --ci - - static-analysis: - runs-on: ubuntu-latest - timeout-minutes: 5 - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: 8.3 - extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv - coverage: none - - - name: Install dependencies - run: composer update --prefer-stable --prefer-dist --no-interaction - - - name: Run PHPStan - run: vendor/bin/phpstan analyse --error-format=github - - code-style: - runs-on: ubuntu-latest - timeout-minutes: 5 - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: 8.3 - extensions: dom, curl, libxml, mbstring, zip - coverage: none - - - name: Install dependencies - run: composer update --prefer-stable --prefer-dist --no-interaction - - - name: Check code style - run: vendor/bin/pint --test