From 160291c2f111a46120121e3dbc337d9907d1a0e1 Mon Sep 17 00:00:00 2001 From: Victor Truong Date: Fri, 31 Jul 2020 18:54:45 -0700 Subject: [PATCH] Add build workflow --- .github/workflows/build.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..fd50606 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,15 @@ +name: Build + +on: + - push + - pull_request + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-go@v2 + with: + go-version: ^1.14 + - run: make build