Skip to content

Commit 6ab4dfe

Browse files
committed
Setting up CodeQL analyzer.
1 parent 2536df9 commit 6ab4dfe

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.github/workflows/ci-actions.yml

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: CIRCL
23
on:
34
push:
@@ -97,3 +98,22 @@ jobs:
9798
run: go build -v ./...
9899
- name: Testing
99100
run: go test -v -count=1 ./...
101+
analyze:
102+
name: Analyze with CodeQL
103+
runs-on: ubuntu-latest
104+
permissions:
105+
actions: read
106+
contents: read
107+
security-events: write
108+
109+
steps:
110+
- name: Checkout repository
111+
uses: actions/checkout@v3
112+
- name: Initialize CodeQL
113+
uses: github/codeql-action/init@v2
114+
with:
115+
languages: go
116+
- name: Perform CodeQL Analysis
117+
uses: github/codeql-action/analyze@v2
118+
with:
119+
category: "/language:go"

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ ifeq ($(V),1)
2323
OPTS += -v # Be verbose
2424
endif
2525

26+
all: build
27+
2628
lint:
2729
$(GOLANGCILINT) run --config $(ETC_DIR)/golangci.yml ./...
2830

0 commit comments

Comments
 (0)