Add build workflow

This commit is contained in:
Victor Truong 2020-07-31 18:54:45 -07:00
parent ea0443ad98
commit 160291c2f1

15
.github/workflows/build.yml vendored Normal file
View file

@ -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