summaryrefslogtreecommitdiff
path: root/.github/workflows/qodana_code_quality.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/qodana_code_quality.yml')
-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