File tree Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -37,19 +37,26 @@ jobs:
37
37
- name : Build
38
38
run : make build
39
39
40
- - name : Lint
41
- uses : golangci/golangci-lint-action@v1
42
- with :
43
- # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
44
- version : v1.27
45
-
46
40
- name : Test
47
41
run : make test
48
42
49
43
- uses : shogo82148/actions-goveralls@v1
50
44
with :
51
45
path-to-profile : cover.out
52
46
47
+ lint :
48
+ name : Lint
49
+ runs-on : ubuntu-latest
50
+ steps :
51
+
52
+ - name : Check out code into the Go module directory
53
+ uses : actions/checkout@v2
54
+
55
+ - name : Lint
56
+ uses : golangci/golangci-lint-action@v1
57
+ with :
58
+ version : v1.27
59
+
53
60
deploy :
54
61
name : Deploy
55
62
needs : test
You can’t perform that action at this time.
0 commit comments