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 57e8353 commit 5d3080dCopy full SHA for 5d3080d
.github/workflows/Codeql.yml
@@ -0,0 +1,29 @@
1
+name: "CodeQL"
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, synchronize, reopened]
6
7
+jobs:
8
+ codeql:
9
+ name: "CodeQL Analysis"
10
+ runs-on: ubuntu-latest
11
12
+ concurrency:
13
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
14
+ cancel-in-progress: true
15
16
+ steps:
17
+ - name: Checkout repository
18
+ uses: actions/checkout@v4
19
20
+ - name: Initialize CodeQL
21
+ uses: github/codeql-action/init@v3
22
+ with:
23
+ languages: python
24
25
+ - name: Autobuild
26
+ uses: github/codeql-action/autobuild@v3
27
28
+ - name: Perform CodeQL Analysis
29
+ uses: github/codeql-action/analyze@v3
0 commit comments