From feeeac1a57865ae3374df0810e6ddc7fa5eb3f82 Mon Sep 17 00:00:00 2001 From: bparees Date: Mon, 14 Aug 2023 17:36:16 -0400 Subject: [PATCH] Add a github action for testing --- .github/workflows/github-actions.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/github-actions.yaml diff --git a/.github/workflows/github-actions.yaml b/.github/workflows/github-actions.yaml new file mode 100644 index 0000000..554b0c9 --- /dev/null +++ b/.github/workflows/github-actions.yaml @@ -0,0 +1,14 @@ +name: Build Test +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.20' + - name: Build + run: make build