File tree 12 files changed +613
-1
lines changed
12 files changed +613
-1
lines changed Original file line number Diff line number Diff line change
1
+
2
+ version : 2
3
+ updates :
4
+ - package-ecosystem : " gomod" # See documentation for possible values
5
+ directory : " /" # Location of package manifests
6
+ schedule :
7
+ interval : " weekly"
Original file line number Diff line number Diff line change
1
+
2
+ name : CI
3
+
4
+ on :
5
+ push :
6
+ branches : [ master ]
7
+ pull_request :
8
+ branches : [ master ]
9
+
10
+ jobs :
11
+ build :
12
+ runs-on : ubuntu-latest
13
+ strategy :
14
+ matrix :
15
+ go : [ '1.21' ]
16
+ steps :
17
+ - uses : actions/checkout@v3
18
+
19
+ - name : Setup Go
20
+ uses : actions/setup-go@v3
21
+ with :
22
+ go-version : ${{ matrix.go }}
23
+
24
+ - name : Run CI
25
+ env :
26
+ COVERALLS_TOKEN : ${{ secrets.COVERALLS_TOKEN }}
27
+ run : make ci
Original file line number Diff line number Diff line change
1
+
2
+ name : " CodeQL"
3
+
4
+ on :
5
+ push :
6
+ branches : [ "master" ]
7
+ pull_request :
8
+ branches : [ "master" ]
9
+ schedule :
10
+ - cron : ' 16 8 * * 1'
11
+
12
+ jobs :
13
+ analyze :
14
+ name : Analyze
15
+ runs-on : ubuntu-latest
16
+ permissions :
17
+ actions : read
18
+ contents : read
19
+ security-events : write
20
+
21
+ strategy :
22
+ fail-fast : false
23
+ matrix :
24
+ language : [ 'go' ]
25
+
26
+ steps :
27
+ - name : Checkout repository
28
+ uses : actions/checkout@v3
29
+
30
+ - name : Initialize CodeQL
31
+ uses : github/codeql-action/init@v2
32
+ with :
33
+ languages : ${{ matrix.language }}
34
+
35
+ - name : Perform CodeQL Analysis
36
+ uses : github/codeql-action/analyze@v2
37
+ with :
38
+ category : " /language:${{matrix.language}}"
Original file line number Diff line number Diff line change 20
20
# Go workspace file
21
21
go.work
22
22
go.work.sum
23
+ .tools /
You can’t perform that action at this time.
0 commit comments