From b14eef5a8a52624f5575a495fd6e606b01e9c806 Mon Sep 17 00:00:00 2001 From: Christian Leucht Date: Fri, 23 Aug 2024 14:31:19 +0200 Subject: [PATCH] php-qa.yml // remove "jobs.*.needs". Signed-off-by: Christian Leucht --- .github/workflows/php-qa.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/php-qa.yml b/.github/workflows/php-qa.yml index a4c481b..441052c 100644 --- a/.github/workflows/php-qa.yml +++ b/.github/workflows/php-qa.yml @@ -29,15 +29,12 @@ jobs: with: PHP_VERSION: ${{ matrix.php }} coding-standards-analysis-php: - needs: lint-php uses: inpsyde/reusable-workflows/.github/workflows/coding-standards-php.yml@main static-code-analysis-php: - needs: lint-php uses: inpsyde/reusable-workflows/.github/workflows/static-analysis-php.yml@main with: PSALM_ARGS: '--output-format=github --no-cache --find-unused-psalm-suppress' tests-unit-php: - needs: [ static-code-analysis-php, coding-standards-analysis-php ] strategy: matrix: php: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2"]