-
Notifications
You must be signed in to change notification settings - Fork 2
43 lines (37 loc) · 870 Bytes
/
codeql.yaml
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
name: "CodeQL analysis"
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
analyze:
name: Analyze code
runs-on: ubuntu-24.04
permissions:
security-events: write
packages: read
actions: read
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize Golang environment
uses: actions/setup-go@v5
with:
go-version: 1.23.4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: go
build-mode: manual
- name: Build repository
shell: bash
run: |
PLATFORMS=linux/amd64 ./build.sh
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:go"