From 7e735e5b5d474e7d2ded0866825b637d4c8bb755 Mon Sep 17 00:00:00 2001 From: Anwar Hidayat Date: Tue, 2 Nov 2021 12:42:53 +0700 Subject: [PATCH] feat: add workflwo for testing --- .github/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 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..948fb88 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,16 @@ +name: test +on: [push] +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: '1.17' + - name: Test + run: make test