Skip to content

Commit af5d0bb

Browse files
authored
Merge branch 'main' into repo_selection
2 parents 286eeb5 + ee23994 commit af5d0bb

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/codeql.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: CodeQL
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
codeql:
8+
name: codeql
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2.4.0
12+
13+
- uses: actions/setup-go@v2
14+
with:
15+
go-version: ^1.16
16+
17+
- name: Initialize CodeQL
18+
uses: github/codeql-action/init@v1
19+
with:
20+
languages: go
21+
22+
- name: Build
23+
run: make build
24+
25+
- name: Perform CodeQL Analysis
26+
uses: github/codeql-action/analyze@v1

0 commit comments

Comments
 (0)