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 dc2c643 commit 83ccb92Copy full SHA for 83ccb92
.github/workflows/codeql.yml
@@ -0,0 +1,33 @@
1
+name: "CodeQL"
2
+
3
+on:
4
+ push:
5
+ branches: "master"
6
+ pull_request:
7
8
+ schedule:
9
+ - cron: '39 16 * * 5'
10
11
+jobs:
12
+ analyze:
13
+ name: Analyze
14
+ runs-on: ubuntu-latest
15
+ timeout-minutes: 360
16
+ permissions:
17
+ actions: read
18
+ contents: read
19
+ security-events: write
20
21
+ steps:
22
+ - name: Checkout repository
23
+ uses: actions/checkout@v3
24
25
+ - name: Initialize CodeQL
26
+ uses: github/codeql-action/init@v2
27
+ with:
28
+ languages: python
29
30
+ - name: Perform CodeQL Analysis
31
+ uses: github/codeql-action/analyze@v2
32
33
+ category: "/language:python"
0 commit comments