From d2b8b373b96fb5c5345b6e5a68a01237e1676fff Mon Sep 17 00:00:00 2001 From: Christopher Fenner <26137398+CCFenner@users.noreply.github.com> Date: Fri, 31 Jan 2020 15:18:34 +0100 Subject: [PATCH] chore(pipeline): add GO unit test as GH action (#1138) * add GO unit test job * Update .github/workflows/verify-go.yml --- .github/workflows/verify-go.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/verify-go.yml b/.github/workflows/verify-go.yml index 173105fc6..62cff336e 100644 --- a/.github/workflows/verify-go.yml +++ b/.github/workflows/verify-go.yml @@ -3,6 +3,16 @@ name: Go on: [push] jobs: + unit: + runs-on: ubuntu-latest + steps: + - uses: actions/setup-go@v1 + with: + go-version: '1.13.x' + - name: checkout + uses: actions/checkout@v2 + - name: unit-test + run: go test ./... --cover format: runs-on: ubuntu-latest steps: