Skip to content

Commit

Permalink
Makefile: Increase timeout of linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ish-hcc committed Aug 11, 2024
1 parent 43405f2 commit 57c04ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ lint: dependency ## Lint the files
if [ ! -f "$$go_path/bin/golangci-lint" ]; then \
${GO_COMMAND} install github.com/golangci/golangci-lint/cmd/golangci-lint@latest; \
fi; \
$$go_path/bin/golangci-lint run -E contextcheck -E revive
$$go_path/bin/golangci-lint run --timeout 30 -E contextcheck -E revive

test: dependency ## Run unittests
@echo "Running tests..."
Expand Down

0 comments on commit 57c04ae

Please sign in to comment.