-
Notifications
You must be signed in to change notification settings - Fork 12
67 lines (64 loc) · 2.26 KB
/
build.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
on: [push, pull_request]
name: Build
jobs:
test:
strategy:
matrix:
go-version: [1.14.x, 1.13.x, 1.12.x, 1.11.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
if: success()
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v1
- name: Run tests
run: go test -v -race -covermode=atomic
coverage:
runs-on: ubuntu-latest
steps:
- name: Install Go
if: success()
uses: actions/setup-go@v1
with:
go-version: 1.13.x
- name: Checkout code
uses: actions/checkout@v1
- name: Calc coverage
run: |
export PATH=$PATH:$(go env GOPATH)/bin
go test -v -covermode=count -coverprofile=coverage.out
- name: Convert coverage to lcov
uses: jandelgado/[email protected]
with:
infile: coverage.out
outfile: coverage.lcov
- name: Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: coverage.lcov
# build:
# runs-on: ubuntu-latest
# needs: [lint, test]
# steps:
# - name: Install Go
# uses: actions/setup-go@v1
# with:
# go-version: 1.13.x
# - name: Checkout code
# uses: actions/checkout@v1
# - name: build
# run: |
# export GO111MODULE=on
# GOOS=windows GOARCH=amd64 go build -o bin/ci-test-windows-amd64.exe
# GOOS=linux GOARCH=amd64 go build -o bin/ci-test-linux-amd64
# GOOS=darwin GOARCH=amd64 go build -o bin/ci-test-darwin-amd64
# - name: upload artifacts
# uses: actions/upload-artifact@master
# with:
# name: binaries
# path: bin/