-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into hotfix/fix-debug-import
- Loading branch information
Showing
3 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Qodana | ||
on: | ||
push: | ||
|
||
jobs: | ||
qodana: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: | ||
- '8.1' | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Use PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
extensions: sqlite3, zip | ||
coverage: xdebug | ||
tools: composer:v2 | ||
|
||
- name: Get Composer Cache Directory | ||
id: composer-cache | ||
run: | | ||
echo "::set-output name=dir::$(composer config cache-dir)" | ||
working-directory: ./ | ||
|
||
- name: cache dependencies | ||
id: cache-dependencies | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-${{ matrix.php }}-${{ matrix.composer }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-${{ matrix.php }}-${{ matrix.composer }}-composer- | ||
- name: Validate composer.json and composer.lock | ||
run: composer validate | ||
working-directory: ./ | ||
|
||
- name: Install dependencies | ||
env: | ||
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }} | ||
COMPOSER_FLAGS: ${{ matrix.composer }} | ||
run: composer update ${COMPOSER_FLAGS} --prefer-source | ||
working-directory: ./ | ||
|
||
- name: 'Qodana Scan' | ||
uses: JetBrains/[email protected] | ||
with: | ||
args: --baseline,qodana.sarif.json | ||
env: | ||
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ jobs: | |
- '7.4' | ||
- '8.0' | ||
- '8.1' | ||
- '8.2' | ||
composer: | ||
- '' | ||
- '--prefer-lowest' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: "1.0" | ||
linter: jetbrains/qodana-php:2023.1-eap | ||
profile: | ||
name: qodana.recommended | ||
include: | ||
- name: CheckDependencyLicenses | ||
- name: VulnerableLibrariesGlobal | ||
exclude: | ||
- name: All | ||
paths: | ||
- vendor | ||
php: | ||
version: "8.1" |