name: Qodana on: workflow_dispatch: pull_request: push: branches: # Specify your branches here - main # The 'main' branch - 'releases/*' # The release branches jobs: qodana: # Run on our self-hosted runner to avoid GitHub-hosted Actions budget limits. runs-on: [self-hosted, Linux, X64, default] permissions: contents: write pull-requests: write checks: write steps: - uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha || github.sha }} # Use PR head when available, otherwise the pushed SHA. fetch-depth: 0 # a full history is required for pull request analysis - name: Prepare Qodana cache directories run: | mkdir -p "${RUNNER_TEMP}/qodana/caches" mkdir -p "${RUNNER_TEMP}/qodana/results" - name: 'Qodana Scan' uses: JetBrains/qodana-action@v2025.3 with: pr-mode: false env: QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} QODANA_ENDPOINT: 'https://qodana.cloud'