Skip to content

Commit

Permalink
Merge pull request #22 from pimcore/qodana_check
Browse files Browse the repository at this point in the history
Reusable qodana check
  • Loading branch information
bluvulture committed Apr 30, 2024
2 parents aa07fa3 + 93dceff commit 554f7b9
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
File renamed without changes.
51 changes: 51 additions & 0 deletions .github/workflows/reusable-qodana-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: "Qodana check"

on:
workflow_call:
secrets:
COMPOSER_PIMCORE_REPO_PACKAGIST_TOKEN:
required: true
QODANA_TOKEN:
required: true

jobs:
Qodana:
timeout-minutes: 15
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
checks: write
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0

- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
extensions: curl, mbstring, openssl, pdo, pdo_sqlite
ini-values: memory_limit=-1, date.timezone='UTC'
coverage: xdebug
tools: composer:v2

- name: Validate composer.json and composer.lock
run: composer validate

- name: Add authentication for private pimcore packages
run: |
composer config repositories.private-packagist composer https://repo.pimcore.com/github-actions/
composer config --global --auth http-basic.repo.pimcore.com github-actions ${{ secrets.COMPOSER_PIMCORE_REPO_PACKAGIST_TOKEN }}
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-interaction

- name: "Qodana Scan"
uses: JetBrains/qodana-action@latest
with:
use-caches: false
args: --baseline,qodana.sarif.json
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}

0 comments on commit 554f7b9

Please sign in to comment.