We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3d3c25 commit ef94a6bCopy full SHA for ef94a6b
.github/workflows/codeql.yml
@@ -0,0 +1,42 @@
1
+---
2
+name: "CodeQL"
3
+
4
+on:
5
+ push:
6
+ branches:
7
+ - main
8
+ pull_request:
9
10
11
+ schedule:
12
+ - cron: '45 8 * * 4'
13
14
+jobs:
15
+ analyze:
16
+ name: Analyze
17
+ runs-on: ubuntu-latest
18
+ permissions:
19
+ actions: read
20
+ contents: read
21
+ security-events: write
22
23
+ strategy:
24
+ fail-fast: false
25
+ matrix:
26
+ language:
27
+ - 'go'
28
29
+ steps:
30
+ - name: Checkout repository
31
+ uses: actions/checkout@v2
32
33
+ - name: Initialize CodeQL
34
+ uses: github/codeql-action/init@v1
35
+ with:
36
+ languages: ${{ matrix.language }}
37
38
+ - name: Autobuild
39
+ uses: github/codeql-action/autobuild@v1
40
41
+ - name: Perform CodeQL Analysis
42
+ uses: github/codeql-action/analyze@v1
0 commit comments