-
Notifications
You must be signed in to change notification settings - Fork 438
90 lines (77 loc) · 2.7 KB
/
go.yml
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
name: CI
on:
push:
branches: [ "main", "master" ]
pull_request:
branches: [ "*" ]
jobs:
lint:
name: Lint check
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Golangci Lint
# https://golangci-lint.run/
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: "--out-format colored-line-number"
build:
name: Build and test - Go ${{ matrix.go_version }}
runs-on: ubuntu-latest
strategy:
# If you want to matrix build , you can append the following list.
matrix:
go_version:
- 1.16
- 1.18
- 1.19
os:
- ubuntu-latest
steps:
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go_version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Cache build dependence
uses: actions/cache@v3
with:
# Cache
path: ~/go/pkg/mod
# Cache key
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
# An ordered list of keys to use for restoring the cache if no cache hit occurred for key
restore-keys: ${{ runner.os }}-go-
- name: Test
run: |
go test -v -race ./... -coverprofile=coverage.txt -covermode=atomic
cd ./pkg/datasource/consul
go test -race -count=1 ./... -coverprofile=coverage.txt -covermode=atomic
cd ../etcdv3
go test -race -count=1 ./... -coverprofile=coverage.txt -covermode=atomic
cd ../k8s
go test -race -count=1 ./... -coverprofile=coverage.txt -covermode=atomic
cd ../nacos
go test -race -count=1 ./... -coverprofile=coverage.txt -covermode=atomic
cd ../apollo
go test -race -count=1 ./... -coverprofile=coverage.txt -covermode=atomic
cd ../../adapters/echo
go test -race -count=1 ./... -coverprofile=coverage.txt -covermode=atomic
cd ../gear
go test -race -count=1 ./... -coverprofile=coverage.txt -covermode=atomic
cd ../gin
go test -race -count=1 ./... -coverprofile=coverage.txt -covermode=atomic
cd ../grpc
go test -race -count=1 ./... -coverprofile=coverage.txt -covermode=atomic
cd ../micro
go test -race -count=1 ./... -coverprofile=coverage.txt -covermode=atomic
- name: Coverage
run: bash <(curl -s https://codecov.io/bash)