From ec1bed4869f098eaac44b51e06761b135c6e1e45 Mon Sep 17 00:00:00 2001 From: Jan Kowalleck Date: Sat, 8 Jul 2023 07:42:49 +0200 Subject: [PATCH] CI: fix name `code-checker` Signed-off-by: Jan Kowalleck --- .github/workflows/php.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 1669676..706c8fd 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -89,7 +89,7 @@ jobs: path: ${{ env.REPORTS_DIR }} if-no-files-found: error code-checker: - name: Code analysis (php${{ matrix.php }}) + name: Code analysis (php${{ matrix.php-version }}) runs-on: ubuntu-latest timeout-minutes: 30 env: @@ -131,10 +131,10 @@ jobs: - name: Run Psalm tests run: > php tools/psalm/vendor/vimeo/psalm/psalm + --php-version=${{ matrix.php-version }} --no-diff --no-cache --long-progress - --php-version=${{ matrix.php-version }} --report=${{ env.REPORTS_DIR }}/psalm.php${{ matrix.php-version }}.junit.xml - name: Artifact reports if: ${{ ! cancelled() }}