From eb31830dd34266f03cfcfbed8dfa71bf42cc16a0 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 14 Aug 2023 17:58:18 -0700 Subject: [PATCH] fix: do run tests in CI Apparently, what happens in GHA CI now is: > go test -test.v -race -cover > shell: /usr/bin/bash -e {0} > ? github.com/polyfloyd/go-errorlint [no test files] Fix this. Signed-off-by: Kir Kolyshkin --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f24c8c9..73e34fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: - name: go build run: go build -v - name: go test - run: go test -test.v -race -cover + run: go test -test.v -race -cover ./... conventional-commits: runs-on: ubuntu-latest