From ffa34f1d83a984ab6a61d0abc8034e6a42f72beb Mon Sep 17 00:00:00 2001 From: Chris Archibald Date: Wed, 26 Jul 2023 11:30:32 -0700 Subject: [PATCH] Create unit-test.yml --- .github/workflows/unit-test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/unit-test.yml diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml new file mode 100644 index 00000000..706e3a25 --- /dev/null +++ b/.github/workflows/unit-test.yml @@ -0,0 +1,20 @@ +name: Go Unit Tests + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.19.3' + + - name: Build + run: | + export GOFLAGS=-buildvcs=false + ./scripts/unittest.sh