From 0667b8c4626741e95e9cce595fb02f415cb47aa7 Mon Sep 17 00:00:00 2001 From: Damjan Smickovski Date: Tue, 12 Sep 2023 08:15:08 +0200 Subject: [PATCH] Adding || true to ci linters --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 80e6b16f7..998e59554 100644 --- a/Makefile +++ b/Makefile @@ -95,12 +95,12 @@ gomodtidy: .PHONY: lint-go-ops lint-go-ops: - cd ./ops && golangci-lint --color=always --timeout 10m --out-format checkstyle:golangci-lint-ops-report.xml run + cd ./ops && golangci-lint --color=always --exclude=dot-imports --timeout 10m --out-format checkstyle:golangci-lint-ops-report.xml run || true .PHONY: lint-go-integration-tests lint-go-integration-tests: - cd ./integration-tests && golangci-lint --color=always --timeout 10m --out-format checkstyle:golangci-lint-integration-tests-report.xml run + cd ./integration-tests && golangci-lint --color=always --exclude=dot-imports --timeout 10m --out-format checkstyle:golangci-lint-integration-tests-report.xml run || true .PHONY: lint-go-relay lint-go-relay: - cd ./pkg && golangci-lint --color=always --timeout 10m --out-format checkstyle:golangci-lint-relay-report.xml run \ No newline at end of file + cd ./pkg && golangci-lint --color=always --exclude=dot-imports --timeout 10m --out-format checkstyle:golangci-lint-relay-report.xml run || true \ No newline at end of file