We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8a429c commit c70e4b5Copy full SHA for c70e4b5
1 file changed
.github/workflows/codescan.yaml
@@ -0,0 +1,35 @@
1
+name: codescan-workflow
2
+on:
3
+ push:
4
+ branches: [main]
5
+ pull_request:
6
7
+ workflow_dispatch:
8
+ schedule:
9
+ - cron: '0 0 * * 0' # weekly
10
+
11
+jobs:
12
+ code-ql:
13
+ name: CodeQL
14
+ runs-on: ubuntu-latest
15
+ permissions:
16
+ actions: read
17
+ contents: read
18
+ security-events: write
19
20
+ strategy:
21
+ fail-fast: false
22
+ matrix:
23
+ language: ['python']
24
25
+ steps:
26
+ - name: Checkout code
27
+ uses: actions/checkout@v2
28
29
+ - name: Initialize CodeQL
30
+ uses: github/codeql-action/init@v1
31
+ with:
32
+ languages: ${{ matrix.language }}
33
34
+ - name: Perform CodeQL Analysis
35
+ uses: github/codeql-action/analyze@v1
0 commit comments