We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8655b46 commit d4d6ebfCopy full SHA for d4d6ebf
1 file changed
.github/workflows/codeql.yml
@@ -0,0 +1,36 @@
1
+name: CodeQL Weekly Scan
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
+ schedule:
9
+ - cron: '0 0 * * 0' # Weekly on Sundays at midnight
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: Perform CodeQL Analysis
36
+ uses: github/codeql-action/analyze@v3
0 commit comments