-
Notifications
You must be signed in to change notification settings - Fork 79
94 lines (79 loc) · 1.81 KB
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: CI
on:
push:
jobs:
go-test:
strategy:
matrix:
go-version:
- 1.18.x
- 1.17.x
name: Go test
runs-on: ubuntu-latest
services:
redis:
image: "redis:7"
ports:
- "6379:6379"
rabbitmq:
image: "rabbitmq:3"
ports:
- "5672:5672"
nsq:
image: "nsqio/nsq:v1.0.0-compat"
ports:
- "4150:4150"
options: --entrypoint nsqd
nats:
image: "nats-streaming:0.5.0"
ports:
- "4222:4222"
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Get source
uses: actions/checkout@v3
- name: Go test
run: go test -v -timeout 30s -race ./...
go-vet:
name: Go vet
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.18.x
- name: Get source
uses: actions/checkout@v3
- name: Go vet
run: go vet ./...
golint:
name: Golint
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.18.x
- name: Get source
uses: actions/checkout@v3
- name: Go get golint
run: go mod download
- name: Golint
run: go run golang.org/x/lint/golint -set_exit_status ./...
staticcheck:
name: Staticcheck
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.18.x
- name: Get source
uses: actions/checkout@v3
- name: Go get staticcheck
run: go mod download
- name: Golint
run: go run honnef.co/go/tools/cmd/staticcheck ./...