Unverified Commit b1ad843b authored by M. Mert Yildiran's avatar M. Mert Yildiran
Browse files

Add `test-lint` Makefile rule

No related merge requests found
Showing with 9 additions and 0 deletions
+9 -0
......@@ -83,6 +83,15 @@ clean-cli: ## Clean CLI.
clean-docker:
@(echo "DOCKER cleanup - NOT IMPLEMENTED YET " )
test-lint:
cd agent && golangci-lint run
cd shared && golangci-lint run
cd tap && golangci-lint run
cd cli && golangci-lint run
cd acceptanceTests && golangci-lint run
cd tap/api && golangci-lint run
cd tap/extensions/ && for D in */; do cd $$D && golangci-lint run && cd ..; done
test-cli:
@echo "running cli tests"; cd cli && $(MAKE) test
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment