Skip to content

Commit c01ab77

Browse files
authoredSep 9, 2021
Create codeql-analysis.yml
1 parent 756b4d7 commit c01ab77

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
 

‎.github/workflows/codeql-analysis.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
7+
jobs:
8+
analyze:
9+
name: Analyze
10+
runs-on: ubuntu-latest
11+
permissions:
12+
actions: read
13+
contents: read
14+
security-events: write
15+
16+
steps:
17+
- name: Checkout repo
18+
uses: actions/checkout@v2
19+
20+
- name: Initialize CodeQL
21+
uses: github/codeql-action/init@v1
22+
with:
23+
languages: 'go'
24+
25+
- name: CodeQL Analysis
26+
uses: github/codeql-action/analyze@v1

0 commit comments

Comments
 (0)
Please sign in to comment.