Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit d48a91e

Browse files
guerinoniFabio Falzoi
authored andcommitted
Create codeql-analysis.yml
1 parent b083a84 commit d48a91e

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
analyze:
11+
name: Analyze
12+
runs-on: ubuntu-latest
13+
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
language: ['go']
18+
19+
steps:
20+
- name: Checkout repository
21+
uses: actions/checkout@v2
22+
23+
- name: Initialize CodeQL
24+
uses: github/codeql-action/init@v1
25+
with:
26+
languages: ${{ matrix.language }}
27+
28+
- name: Autobuild
29+
uses: github/codeql-action/autobuild@v1
30+
31+
- name: Perform CodeQL Analysis
32+
uses: github/codeql-action/analyze@v1

0 commit comments

Comments
 (0)