diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..586c1b31 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,19 @@ +name: ZGrab2 build action +on: [push, pull_request] +jobs: + build: + name: Build + runs-on: ubuntu-latest + steps: + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.16 + + - name: Check out source + uses: actions/checkout@v2 + + - name: Build + run: | + go get -t ./... + make