This repository has been archived by the owner on Apr 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
actions.yml
85 lines (85 loc) · 2.2 KB
/
actions.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
jobs:
build-ubuntu-1804:
runs-on: ubuntu-18.04
strategy:
matrix:
go: [ '1.11.x', '1.12.x', '1.13.x' ]
name: go${{ matrix.go }} test
steps:
- uses: actions/checkout@master
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- run: go build -v ./...
- run: go test -v ./...
build-ubuntu-1604:
runs-on: ubuntu-16.04
strategy:
matrix:
go: [ '1.11.x', '1.12.x', '1.13.x' ]
name: go${{ matrix.go }} test
steps:
- uses: actions/checkout@master
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- run: go build -v ./...
- run: go test -v ./...
build-ubuntu-latest:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.11.x', '1.12.x', '1.13.x' ]
name: go${{ matrix.go }} test
steps:
- uses: actions/checkout@master
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- run: go build -v ./...
- run: go test -v ./...
build-macos-1014:
runs-on: macos-10.14
strategy:
matrix:
go: [ '1.11.x', '1.12.x', '1.13.x' ]
name: go${{ matrix.go }} test
steps:
- uses: actions/checkout@master
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- run: go build -v ./...
- run: go test -v ./...
build-macos-latest:
runs-on: macos-latest
strategy:
matrix:
go: [ '1.11.x', '1.12.x', '1.13.x' ]
name: go${{ matrix.go }} test
steps:
- uses: actions/checkout@master
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- run: go build -v ./...
- run: go test -v ./...
build-windows-latest:
runs-on: windows-latest
strategy:
matrix:
go: [ '1.11.x', '1.12.x', '1.13.x' ]
name: go${{ matrix.go }} test
steps:
- uses: actions/checkout@master
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- run: go build -v ./...
- run: go test -v ./...