Skip to content

Commit

Permalink
Fix Makefile
Browse files Browse the repository at this point in the history
This will fix make file as the targets
are not getting executed properly
  • Loading branch information
piyush-garg authored and tekton-robot committed Apr 12, 2020
1 parent 18e1db5 commit cd69c5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ check: lint test
test: test-unit ## run all tests

.PHONY: lint
test: lint-go lint-yaml ## run all linters
lint: lint-go lint-yaml ## run all linters

.PHONY: lint-go
lint: ## runs go linter on all go files
lint-go: ## runs go linter on all go files
@echo "Linting go files..."
@golangci-lint run ./... --modules-download-mode=vendor \
--max-issues-per-linter=0 \
Expand Down

0 comments on commit cd69c5e

Please sign in to comment.