From 96646372d38e4d1eb67aa8f63241f950ad9bdc08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9F=92=BB=20Eher?= Date: Mon, 9 Oct 2023 21:30:17 +0200 Subject: [PATCH] chore(ci): remove qodana and authoritative classmap MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 💻 Eher --- .github/workflows/main.yml | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f9b61be..e54dfea 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,6 @@ jobs: strategy: matrix: php-versions: ['8.1', '8.2'] - dependencies: ['normal', 'authoritative'] steps: - uses: actions/checkout@v4 @@ -21,36 +20,25 @@ jobs: php-version: ${{ matrix.php-versions }} - name: Install dependencies - if: matrix.dependencies == 'normal' run: composer install --prefer-dist env: COMPOSER_ROOT_VERSION: dev-master - - name: Install dependencies - if: matrix.dependencies == 'authoritative' - run: composer install --prefer-dist --classmap-authoritative - env: - COMPOSER_ROOT_VERSION: dev-master - - name: Run Psalm - if: matrix.php-versions == '8.2' && matrix.dependencies == 'normal' + if: matrix.php-versions == '8.2' run: composer run psalm - name: Run Phpunit run: composer run phpunit - name: Run PhpCs - if: matrix.php-versions == '8.2' && matrix.dependencies == 'normal' + if: matrix.php-versions == '8.2' run: composer run phpcs - name: Run Infection - if: matrix.php-versions == '8.2' && matrix.dependencies == 'normal' + if: matrix.php-versions == '8.2' run: composer run infection - name: Check dependencies usage - if: matrix.php-versions == '8.2' && matrix.dependencies == 'normal' + if: matrix.php-versions == '8.2' run: composer run require-checker - - - name: Run Qodana - if: matrix.php-versions == '8.2' && matrix.dependencies == 'normal' - uses: JetBrains/qodana-action@95ecb19ba27e308153723e54a790e4ad908b13a0 # v2023.2.8