2019-11-14 07:08:18 +03:00
|
|
|
name: Go
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
2020-04-02 06:31:14 +03:00
|
|
|
- name: Set up Go 1.14
|
2019-11-14 07:08:18 +03:00
|
|
|
uses: actions/setup-go@v1
|
|
|
|
with:
|
2020-04-02 06:31:14 +03:00
|
|
|
go-version: 1.14
|
2019-11-14 07:08:18 +03:00
|
|
|
id: go
|
|
|
|
|
|
|
|
- name: Check out code into the Go module directory
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- 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
|
|
|
|
|
|
|
|
- name: Build
|
2019-12-27 05:54:11 +03:00
|
|
|
run: |
|
2019-12-27 05:51:20 +03:00
|
|
|
go build -v .
|
|
|
|
./pingtunnel
|