summaryrefslogtreecommitdiff
path: root/.github/workflows/qodana_code_quality.yml
blob: 5ec1cc68a0642abf0bfbb1be6480275f58cbaa1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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]
        env:
          QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}