File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 5
5
- main
6
6
pull_request :
7
7
jobs :
8
+ lint :
9
+ name : Lint
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - name : Setup go
13
+ uses : actions/setup-go@v2
14
+ with :
15
+ go-version : 1.16
16
+ - name : Checkout repository
17
+ uses : actions/checkout@v2
18
+ - name : Setup golangci-lint
19
+ uses : golangci/golangci-lint-action@v2
20
+ with :
21
+ version : v1.43
22
+ args : --verbose
23
+ skip-go-installation : true
8
24
unittest :
9
25
name : Unit Test
10
26
runs-on : ubuntu-latest
22
38
run : sudo apt-get update && sudo apt-get install libdb-dev
23
39
- name : Run unit tests
24
40
run : make test
25
-
26
41
integration :
27
42
name : Integration Test
28
43
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change
1
+ run :
2
+ timeout : 5m
3
+ linters :
4
+ disable :
5
+ - errcheck
6
+ - gosimple
7
+ - govet
8
+ - ineffassign
9
+ - staticcheck
10
+ - structcheck
11
+ - unused
You can’t perform that action at this time.
0 commit comments