Skip to content

Commit 44dab4b

Browse files
committed
Added support for Qodana
1 parent eb4eea2 commit 44dab4b

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

.github/workflows/qodana.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: "1.0"
2+
3+
profile:
4+
name: qodana.starter
5+
6+
exclude:
7+
- name: All
8+
paths:
9+
- zitadel_client/api
10+
- zitadel_client/models
11+
12+
linter: jetbrains/qodana-python:2025.1

0 commit comments

Comments
 (0)