From ec950fb2f05f5083b722928f10ef7333fdc060a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Mon, 13 Nov 2023 22:57:54 +0100 Subject: [PATCH] Update qodana.yml --- .github/workflows/qodana.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/qodana.yml b/.github/workflows/qodana.yml index 528f092..bb3157d 100644 --- a/.github/workflows/qodana.yml +++ b/.github/workflows/qodana.yml @@ -27,6 +27,12 @@ jobs: contents: "write" pull-requests: "write" steps: + - + name: "Set up PHP" + uses: "shivammathur/setup-php@2.27.0" + with: + php-version: "8.2" + coverage: "none" - name: "Checkout repository" uses: "actions/checkout@v3.6.0" @@ -34,6 +40,11 @@ jobs: # Check out the pull request commit, not the merge commit ref: "${{ github.event.pull_request.head.sha }}" fetch-depth: 0 + - + name: "Install dependencies" + uses: "ramsey/composer-install@2.2.0" + with: + dependency-versions: "highest" - name: "Run analysis" uses: "JetBrains/qodana-action@v2023.2"