From 52636b04cf0a728435146557406c7cbdd53b9566 Mon Sep 17 00:00:00 2001 From: sirkrypt0 <22522058+sirkrypt0@users.noreply.github.com> Date: Tue, 25 May 2021 09:35:01 +0200 Subject: [PATCH] Allow lint step to fail This way we can use the linter in all branches already and gradually adjust our code to the new linter. --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bc1a3f9..95a9ff4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -37,6 +37,7 @@ golangci-lint: image: golangci/golangci-lint:latest script: - make golangci-lint + allow_failure: true test: stage: test