We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f977865 commit 2b4d3deCopy full SHA for 2b4d3de
1 file changed
.github/workflows/codeql.yml
@@ -0,0 +1,39 @@
1
+name: CodeQL
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
+ schedule:
9
+ - cron: '0 3 * * 1' # weekly scan (Monday 3am)
10
11
+jobs:
12
+ analyze:
13
+ name: Analyze
14
+ runs-on: ubuntu-latest
15
16
+ permissions:
17
+ actions: read
18
+ contents: read
19
+ security-events: write
20
21
+ strategy:
22
+ fail-fast: false
23
+ matrix:
24
+ language: [ 'python' ]
25
26
+ steps:
27
+ - name: Checkout repository
28
+ uses: actions/checkout@v4
29
30
+ - name: Initialize CodeQL
31
+ uses: github/codeql-action/init@v3
32
+ with:
33
+ languages: ${{ matrix.language }}
34
35
+ - name: Autobuild
36
+ uses: github/codeql-action/autobuild@v3
37
38
+ - name: Perform CodeQL Analysis
39
+ uses: github/codeql-action/analyze@v3
0 commit comments