diff --git a/.github/workflows/ci-qodana-scan.yml b/.github/workflows/ci-qodana-scan.yml new file mode 100644 index 000000000..807a66afc --- /dev/null +++ b/.github/workflows/ci-qodana-scan.yml @@ -0,0 +1,27 @@ +name: '🪲 Qodana Scan' +on: + workflow_dispatch: + pull_request: + push: + branches: + - master + - develop + +jobs: + qodana: + 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 }} + + - name: 'Qodana Scan' + uses: JetBrains/qodana-action@v2023.2 + env: + QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}