-
Notifications
You must be signed in to change notification settings - Fork 20
61 lines (53 loc) · 2.1 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
name: go
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Caching modules
uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-aw-${{ hashFiles('**/go.sum') }}
- name: Get dependencies
run: |
export PATH=$PATH:$(go env GOPATH)/bin
go get -u github.com/onsi/ginkgo/ginkgo
go get -u github.com/onsi/gomega/...
go get -u golang.org/x/lint/golint
go get -u github.com/loongy/covermerge
go get -u github.com/mattn/goveralls
- name: Run vetting
run: |
cd $GITHUB_WORKSPACE
export PATH=$PATH:$(go env GOPATH)/bin
go vet ./...
- name: Run linting
run: |
cd $GITHUB_WORKSPACE
export PATH=$PATH:$(go env GOPATH)/bin
go get -u golang.org/x/lint/golint
golint ./...
- name: Run tests and report test coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
export PATH=$PATH:$(go env GOPATH)/bin
export REPLAY_MODE=false
cd $GITHUB_WORKSPACE
CI=true ginkgo --v --race --cover --coverprofile coverprofile.out ./...
covermerge \
scheduler/coverprofile.out \
timer/coverprofile.out \
mq/coverprofile.out \
process/coverprofile.out \
replica/coverprofile.out \
coverprofile.out > coverprofile.out
goveralls -coverprofile=coverprofile.out -service=github