diff --git a/.github/workflows/qodana.yml b/.github/workflows/qodana.yml index 04ffc908bb..cb933a2508 100644 --- a/.github/workflows/qodana.yml +++ b/.github/workflows/qodana.yml @@ -24,8 +24,13 @@ jobs: with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: Install dependencies - run: composer install --no-scripts - + run: | + composer install --no-scripts + cp .env.example .env + php artisan key:generate + php artisan clear-compiled + php artisan ide-helper:generate; + - name: 'Qodana Scan' uses: JetBrains/qodana-action@main env: diff --git a/qodana.yaml b/qodana.yaml index 5459eee69b..14ea7adfc6 100644 --- a/qodana.yaml +++ b/qodana.yaml @@ -2,3 +2,7 @@ profile: name: qodana.recommended version: "1.0" linter: jetbrains/qodana-php:2022.3-eap +exclude: + - name: All + paths: + - .ci