From 708df50a26a45a9d0477209fd01fa0d39f21b3c9 Mon Sep 17 00:00:00 2001 From: Daniel Canter Date: Wed, 6 Apr 2022 01:51:29 -0700 Subject: [PATCH] CI: Run tests on Go 1.17+ Add in a ^1.17.0 go-version for the actions/setup-go@v2 action. This was set for our build step but not for the step that runs all of the unit tests. Signed-off-by: Daniel Canter --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e645b27..63a15ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,8 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 + with: + go-version: '^1.17.0' - run: go test -gcflags=all=-d=checkptr -v ./... build: