summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2023-09-01 15:19:03 +0200
committerValery Piashchynski <[email protected]>2023-09-01 15:19:03 +0200
commit0e3f06cbe82511d9faf22d2b5cf4e18b2a915c21 (patch)
treecc142a841fe649f12693e62cef0eb0766f4380ed /.github
parent2041c0d6d1043dc5ec7ef8c1bbd8b45c017231a3 (diff)
chore: add qodana ci
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/qodana_code_quality.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/qodana_code_quality.yml b/.github/workflows/qodana_code_quality.yml
new file mode 100644
index 00000000..509e836e
--- /dev/null
+++ b/.github/workflows/qodana_code_quality.yml
@@ -0,0 +1,20 @@
+name: Qodana
+on:
+ workflow_dispatch:
+ pull_request:
+ push:
+ branches:
+ - master
+ - stable
+
+jobs:
+ qodana:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+ - name: 'Qodana Scan'
+ uses: JetBrains/[email protected]
+ env:
+ QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} \ No newline at end of file