8000
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 b136086 commit f1e4b20Copy full SHA for f1e4b20
.github/workflows/codeql.yml
@@ -0,0 +1,37 @@
1
+name: "CodeQL"
2
+on:
3
+ workflow_dispatch:
4
+ #push:
5
+ # branches: [master]
6
+ #pull_request:
7
8
+
9
+jobs:
10
+ analyze:
11
+ name: Analyze
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ actions: read
15
+ contents: read
16
+ security-events: write
17
18
+ strategy:
19
+ fail-fast: false
20
+ matrix:
21
+ language: ["python"]
22
23
+ steps:
24
+ - name: Checkout repository
25
+ uses: actions/checkout@v3
26
27
+ - name: Initialize CodeQL
28
+ uses: github/codeql-action/init@v2
29
+ with:
30
+ languages: ${{ matrix.language }}
31
+ queries: security-and-quality
32
33
+ - name: Autobuild
34
+ uses: github/codeql-action/autobuild@v2
35
36
+ - name: Perform CodeQL Analysis
37
+ uses: github/codeql-action/analyze@v2
0 commit comments