From a2b34a233d4f4931cf3d7d26f40475c23f770d7d Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Tue, 16 Mar 2021 11:11:12 +0100 Subject: [PATCH] workflow: guard against faillint failing (#4524) So there is (and will always) be a disconnect between latest Go in the workflow and the actual latest Go used by other utils. Faillint move to go 1.16 features and for some reason this now borkes. Add ||true to allow failling to not compile, this will skip that particular test (so be it) Signed-off-by: Miek Gieben --- .github/workflows/go.test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.test.yml b/.github/workflows/go.test.yml index 49e44d4dd..8e43315b2 100644 --- a/.github/workflows/go.test.yml +++ b/.github/workflows/go.test.yml @@ -57,7 +57,7 @@ jobs: - name: Test run: | - go install github.com/fatih/faillint + go install github.com/fatih/faillint || true ( cd test; go test -race ./... ) test-makefile-release: