From cc2a709c23436486cb12c3dd1d4a6bc3b15f97d7 Mon Sep 17 00:00:00 2001 From: Aaron Schlesinger <70865+arschles@users.noreply.github.com> Date: Wed, 13 Nov 2019 14:59:42 -0800 Subject: [PATCH] Create go.yml --- .github/workflows/go.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 000000000..b140c5471 --- /dev/null +++ b/.github/workflows/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"