We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 525da14 commit bbff5b0Copy full SHA for bbff5b0
2 files changed
.github/workflows/code_quality.yaml
@@ -0,0 +1,30 @@
1
+name: Qodana
2
+on:
3
+ workflow_dispatch:
4
+ pull_request:
5
+ push:
6
+ branches: # Specify your branches here
7
+ - main
8
+ - master
9
+ - 'releases/*'
10
+
11
+jobs:
12
+ qodana:
13
+ runs-on: ubuntu-latest
14
+ permissions:
15
+ contents: write
16
+ pull-requests: write
17
+ checks: write
18
+ steps:
19
+ - uses: actions/checkout@v3
20
+ with:
21
+ ref: ${{ github.event.pull_request.head.sha }}
22
+ fetch-depth: 0
23
+ - name: 'Qodana Scan'
24
+ uses: JetBrains/qodana-action@v2024.3
25
26
+ pr-mode: false
27
+ args: --apply-fixes
28
+ push-fixes: pull-request
29
+ env:
30
+ QODANA_TOKEN: ${{ secrets.QODANA }}
src/screens/base_screen.py
@@ -1,2 +1,2 @@
class Screen:
- pass
+ pass
0 commit comments