File tree 1 file changed +16
-6
lines changed
1 file changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -19,26 +19,36 @@ concurrency:
19
19
cancel-in-progress : true
20
20
21
21
jobs :
22
- ci :
23
- name : CI
22
+ test :
24
23
runs-on : ubuntu-latest
25
24
steps :
26
25
- uses : actions/checkout@v3
27
-
28
26
- uses : actions/setup-go@v3
29
27
with :
30
28
go-version : " 1.x"
31
-
32
29
- name : Debug with tmate SSH if enabled
33
30
if : ${{ github.event_name == 'workflow_dispatch' && inputs.debug_ssh }}
34
31
uses : mxschmitt/action-tmate@v3
35
-
36
32
- run : make test-cover
37
-
38
33
- uses : codecov/codecov-action@v3
39
34
35
+ lint :
36
+ runs-on : ubuntu-latest
37
+ steps :
38
+ - uses : actions/checkout@v3
39
+ - uses : actions/setup-go@v3
40
+ with :
41
+ go-version : " 1.x"
40
42
- uses : golangci/golangci-lint-action@v3
41
43
with :
42
44
version : " v1.46.2"
43
45
46
+ check-tidy :
47
+ name : go mod tidy
48
+ runs-on : ubuntu-latest
49
+ steps :
50
+ - uses : actions/checkout@v3
51
+ - uses : actions/setup-go@v3
52
+ with :
53
+ go-version : " 1.x"
44
54
- run : make check-tidy
You can’t perform that action at this time.
0 commit comments