We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07a43ff commit 0394036Copy full SHA for 0394036
.github/workflows/lint.yaml
@@ -15,18 +15,20 @@ jobs:
15
- name: Checkout Repository
16
uses: actions/checkout@v4
17
18
- - name: Run Qodana
+ - name: Run Qodana in Debug Mode
19
uses: JetBrains/qodana-action@v2024.1
20
env:
21
QODANA_TOKEN: ${{ secrets.QODANA }}
22
+ with:
23
+ args: "--verbose"
24
- - name: Upload Qodana Report
25
+ - name: Upload Qodana Results
26
uses: actions/upload-artifact@v4
27
with:
- name: qodana-report
- path: qodana.sarif.json
28
+ name: qodana-results
29
+ path: .qodana/results/
30
31
- name: Publish Qodana Annotations
32
uses: github/codeql-action/upload-sarif@v3
33
- sarif_file: qodana.sarif.json
34
+ sarif_file: .qodana/results/qodana.sarif.json
0 commit comments