2020-02-26 10:13:39 +00:00
|
|
|
name: Build
|
2020-02-21 10:19:09 +00:00
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
2020-04-13 01:05:36 +00:00
|
|
|
- name: Set up Go 1.14
|
2020-02-21 10:19:09 +00:00
|
|
|
uses: actions/setup-go@v1
|
|
|
|
with:
|
2020-04-13 01:05:36 +00:00
|
|
|
go-version: 1.14
|
2020-02-21 10:19:09 +00:00
|
|
|
id: go
|
|
|
|
|
|
|
|
- name: Check out code into the Go module directory
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Get dependencies
|
|
|
|
run: |
|
|
|
|
go get -v -t -d ./...
|
|
|
|
if [ -f Gopkg.toml ]; then
|
|
|
|
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
|
|
|
|
dep ensure
|
|
|
|
fi
|
|
|
|
|
2020-04-14 01:18:45 +00:00
|
|
|
- name: Download deps
|
2020-04-14 01:33:25 +00:00
|
|
|
run: |
|
|
|
|
export PATH=${PATH}:`go env GOPATH`/bin
|
|
|
|
scripts/devtools.sh
|
2020-02-21 10:19:09 +00:00
|
|
|
- name: Build
|
2020-04-14 01:33:25 +00:00
|
|
|
run: |
|
|
|
|
export PATH=${PATH}:`go env GOPATH`/bin
|
|
|
|
make local build
|