We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76de473 commit 6e1a040Copy full SHA for 6e1a040
.github/workflows/codeql.yml
@@ -0,0 +1,31 @@
1
+name: CodeQL
2
+on:
3
+ schedule:
4
+ # every day at midnight
5
+ - cron: "0 0 * * *"
6
+
7
+concurrency:
8
+ group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }}
9
+ cancel-in-progress: true
10
11
+jobs:
12
+ analyze:
13
+ runs-on: ubuntu-latest
14
+ permissions:
15
+ actions: read
16
+ contents: read
17
+ security-events: write
18
19
+ strategy:
20
+ fail-fast: false
21
+ matrix:
22
+ language:
23
+ - python
24
25
+ steps:
26
+ - uses: actions/checkout@v3
27
+ - uses: github/codeql-action/init@v2
28
+ with:
29
+ languages: ${{ matrix.language }}
30
+ - uses: github/codeql-action/autobuild@v2
31
+ - uses: github/codeql-action/analyze@v2
0 commit comments