We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb4eea2 commit 44dab4bCopy full SHA for 44dab4b
2 files changed
.github/workflows/qodana.yml
@@ -0,0 +1,32 @@
1
+name: Qodana
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
+permissions:
10
+ contents: read
11
+ checks: write
12
+ pull-requests: write
13
14
+defaults:
15
+ run:
16
+ working-directory: ./
17
18
+jobs:
19
+ qodana-check:
20
+ runs-on: ubuntu-latest
21
+ name: Inspect Code
22
23
+ steps:
24
+ - name: Checkout code
25
+ uses: actions/checkout@v4
26
+ with:
27
+ fetch-depth: 0
28
29
+ - name: Run Qodana
30
+ uses: JetBrains/qodana-action@v2025.1
31
+ env:
32
+ QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
qodana.yaml
@@ -0,0 +1,12 @@
+version: "1.0"
+profile:
+ name: qodana.starter
+exclude:
+ - name: All
+ paths:
+ - zitadel_client/api
+ - zitadel_client/models
+linter: jetbrains/qodana-python:2025.1
0 commit comments