Skip to content

Commit

Permalink
Merge branch 'main' into hotfix/fix-debug-import
Browse files Browse the repository at this point in the history
  • Loading branch information
jwong-dayspring committed Aug 14, 2023
2 parents 408afaa + b58d27a commit 199596e
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/qodana.yml
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 }}
1 change: 1 addition & 0 deletions .github/workflows/symfony.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- '7.4'
- '8.0'
- '8.1'
- '8.2'
composer:
- ''
- '--prefer-lowest'
Expand Down
13 changes: 13 additions & 0 deletions qodana.yaml
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"

0 comments on commit 199596e

Please sign in to comment.