-
Notifications
You must be signed in to change notification settings - Fork 4
48 lines (40 loc) · 1.27 KB
/
codeql.yml
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
41
42
43
44
45
46
47
48
name: "CodeQL Analysis for Python and Go"
on:
push:
branches: [develop, qa, prod]
pull_request:
branches: "**"
jobs:
analyze:
runs-on: ubuntu-latest
permissions:
security-events: write
packages: read
actions: read
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL for Go
if: contains(github.event.repository.language, 'Go')
uses: github/codeql-action/init@v3
with:
languages: go
build-mode: autobuild
- name: Initialize CodeQL for Python
if: contains(github.event.repository.language, 'Python')
uses: github/codeql-action/init@v3
with:
languages: python
build-mode: none
# You can add any custom build steps here if required for Go, with manual build mode.
- name: Perform CodeQL Analysis for Go
if: contains(github.event.repository.language, 'Go')
uses: github/codeql-action/analyze@v3
with:
category: "/language:go"
- name: Perform CodeQL Analysis for Python
if: contains(github.event.repository.language, 'Python')
uses: github/codeql-action/analyze@v3
with:
category: "/language:python"