From 9dfa0284fabefbd47452d8f4a8bd2a59fb4d7f19 Mon Sep 17 00:00:00 2001 From: Zack Date: Fri, 8 Oct 2021 09:39:20 -0700 Subject: [PATCH] update with setup --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e0e4b3ec..c1d553fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,9 +6,11 @@ on: branches: [master] jobs: - test: - name: Run tests + unit-tests: + name: Go unit tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - run: go test ./... + - uses: actions/checkout@v2 + - uses: actions/setup-go@v2 + - run: go version + - run: go test -v . \ No newline at end of file