From 02216aeca82032c53361306cc21e9543f5e48dd7 Mon Sep 17 00:00:00 2001 From: Aaron Schlesinger <70865+arschles@users.noreply.github.com> Date: Wed, 13 Nov 2019 15:00:22 -0800 Subject: [PATCH] Adding YAML for a GH ACtion #1460 --- go.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 go.yml diff --git a/go.yml b/go.yml new file mode 100644 index 000000000..b140c5471 --- /dev/null +++ b/go.yml @@ -0,0 +1,24 @@ + +name: Go +on: [push] +jobs: + + build: + name: Build + 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: Build + run: go build cmd/proxy/*.go + env: + GOPROXY: https://proxy.golang.org + GO111MODULE: "on"