Merge pull request #7053 from firefly-iii/add-ide-helper

Add IDE helper script.
This commit is contained in:
James Cole
2023-02-19 08:12:55 +01:00
committed by GitHub
2 changed files with 11 additions and 2 deletions

View File

@@ -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:

View File

@@ -2,3 +2,7 @@ profile:
name: qodana.recommended
version: "1.0"
linter: jetbrains/qodana-php:2022.3-eap
exclude:
- name: All
paths:
- .ci