diff options
-rw-r--r-- | .github/workflows/go.coverage.yml | 1 | ||||
-rw-r--r-- | .github/workflows/go.test.yml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/go.coverage.yml b/.github/workflows/go.coverage.yml index 2ce4b1e91..8fa07a147 100644 --- a/.github/workflows/go.coverage.yml +++ b/.github/workflows/go.coverage.yml @@ -22,6 +22,7 @@ jobs: - name: Test With Coverage run: | + go install github.com/fatih/faillint@latest for d in request core coremain plugin test; do \ ( cd $d; go test -coverprofile=cover.out -covermode=atomic -race ./...; [ -f cover.out ] && cat cover.out >> ../coverage.txt ); \ done diff --git a/.github/workflows/go.test.yml b/.github/workflows/go.test.yml index 4f0101fdf..6d652802b 100644 --- a/.github/workflows/go.test.yml +++ b/.github/workflows/go.test.yml @@ -63,7 +63,7 @@ jobs: - name: Test run: | - go install github.com/fatih/faillint || true + go install github.com/fatih/faillint@latest ( cd test; go test -race ./... ) test-makefile-release: |