From 614638b8ba8065fe92b51f1734c38f16c91ba044 Mon Sep 17 00:00:00 2001 From: Michael Quigley Date: Wed, 2 Nov 2022 14:14:30 -0400 Subject: [PATCH] automated build exploration (#70) --- .github/workflows/build.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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 00000000..63fbd3ad --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,20 @@ +name: Go package + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: setup-go + uses: actions/setup-go@v3 + with: + go-version: 1.19.3 + + - name: Build + run: go build -v ./... + + - name: Test + run: go test -v ./... \ No newline at end of file