Skip to content

Commit

Permalink
Adding || true to ci linters
Browse files Browse the repository at this point in the history
  • Loading branch information
smickovskid committed Sep 12, 2023
1 parent 28c2a00 commit 0667b8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
cd ./pkg && golangci-lint --color=always --exclude=dot-imports --timeout 10m --out-format checkstyle:golangci-lint-relay-report.xml run || true

0 comments on commit 0667b8c

Please sign in to comment.