-
Notifications
You must be signed in to change notification settings - Fork 11
40 lines (32 loc) · 912 Bytes
/
codeql-analysis.yml
File metadata and controls
40 lines (32 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: "CodeQL"
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
- cron: "0 0 * * 5"
permissions: "read-all"
jobs:
analyze:
name: "Analyze"
runs-on: "ubuntu-latest"
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ["python"]
steps:
- name: "Checkout repository"
uses: "actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac"
- name: "Run CodeQL init"
uses: "github/codeql-action/init@d8c9c723a57c026c525f404cf42aa0575f3f0bd8"
with:
languages: "${{ matrix.language }}"
- name: "Run CodeQL autobuild"
uses: "github/codeql-action/autobuild@d8c9c723a57c026c525f404cf42aa0575f3f0bd8"
- name: "Run CodeQL analyze"
uses: "github/codeql-action/analyze@d8c9c723a57c026c525f404cf42aa0575f3f0bd8"