Skip to content

Swift export compatibility mode #102

Swift export compatibility mode

Swift export compatibility mode #102

Workflow file for this run

name: Qodana
on:
workflow_dispatch:
pull_request:
branches:
- master
jobs:
qodana:
runs-on: macos-15
permissions:
contents: write
pull-requests: write
checks: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: false
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
- name: Cache Konan
uses: ./.github/actions/cache-konan
- name: 'Qodana Scan'
uses: JetBrains/[email protected]
with:
args: --baseline,qodana.sarif.json
post-pr-comment: false
upload-result: true
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}