summaryrefslogtreecommitdiff
path: root/.github/workflows/qodana_code_quality.yml
blob: 714e90a3bf307273f3c9600848879d5b60d0edcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: Qodana
on:
  workflow_dispatch:
  pull_request:
  push:
    branches:
      - master
      - stable

jobs:
  qodana:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0
      - name: 'Qodana Scan'
        uses: JetBrains/[email protected]
        with:
          use-caches: false
        env:
          QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}