From 8facdb83220c81779a601e4b26531802239843ec Mon Sep 17 00:00:00 2001 From: Madhur Shrimal Date: Sat, 2 Dec 2023 20:19:03 -0800 Subject: [PATCH] add build yml --- .github/workflows/build.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..5ebcfc41 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,19 @@ +name: unit-tests + +on: + push: + branches: + - master + pull_request: + +jobs: + Test: + name: Build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 + with: + go-version: '1.21' + - name: Build + run: make build \ No newline at end of file