File tree 2 files changed +22
-0
lines changed
2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
1
2
name : CIRCL
2
3
on :
3
4
push :
97
98
run : go build -v ./...
98
99
- name : Testing
99
100
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"
Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ ifeq ($(V),1)
23
23
OPTS += -v # Be verbose
24
24
endif
25
25
26
+ all : build
27
+
26
28
lint :
27
29
$(GOLANGCILINT ) run --config $(ETC_DIR ) /golangci.yml ./...
28
30
You can’t perform that action at this time.
0 commit comments