From b7267badb977607c618cb2e4202674bb1db305f1 Mon Sep 17 00:00:00 2001 From: Mel Boyce Date: Sat, 29 Feb 2020 22:18:25 +1100 Subject: [PATCH] Create go.yml --- .github/workflows/go.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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 0000000..0944c70 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,20 @@ +name: go +on: [push] +jobs: + + build: + name: build + runs-on: ubuntu-latest + steps: + + - name: set up go + uses: actions/setup-go@v1 + with: + go-version: 1.13 + id: go + + - name: check out + uses: actions/checkout@v2 + + - name: vet and build + run: go vet ./... && go build