From 8f349cea56a55960315a9ecf71c4f0f2d82d1fe8 Mon Sep 17 00:00:00 2001 From: Claudia Beresford Date: Fri, 25 Nov 2022 13:53:59 +0000 Subject: [PATCH] test: Add test workflow --- .github/workflows/test.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..510d4e2 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +name: run tests + +on: [pull_request, workflow_dispatch] + +jobs: + test: + name: test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-go@v2 + with: + go-version: '1.19' + - name: Build + run: make build + - name: Test + run: make test