Skip to content

Commit ded6c66

Browse files
committed
feat: Improve echos in Makefile
1 parent 5521cf3 commit ded6c66

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,27 @@ project-tools:
1212

1313
# LINT
1414
lint-golangci-lint:
15-
@echo "Linting with golangci-lint"
15+
@echo ">> Linting with golangci-lint"
1616
@$(SCRIPTS_BASE)/lint-golangci-lint.sh "${skip-non-generated-files}" "${service}"
1717

1818
lint-scripts:
19-
@echo "Linting scripts"
19+
@echo ">> Linting scripts"
2020
@cd ${ROOT_DIR}/scripts && golangci-lint run ${GOLANG_CI_ARGS}
2121

2222
sync-tidy:
23-
@echo "Syncing and tidying dependencies"
23+
@echo ">> Syncing and tidying dependencies"
2424
@$(SCRIPTS_BASE)/sync-tidy.sh
2525

2626
lint: sync-tidy
2727
@$(MAKE) --no-print-directory lint-golangci-lint skip-non-generated-files=${skip-non-generated-files} service=${service}
2828

2929
# TEST
3030
test-go:
31-
@echo "Running Go tests"
31+
@echo ">> Running Go tests"
3232
@$(SCRIPTS_BASE)/test-go.sh "${skip-non-generated-files}" "${service}"
3333

3434
test-scripts:
35-
@echo "Running Go tests for scripts"
35+
@echo ">> Running Go tests for scripts"
3636
@go test $(ROOT_DIR)/scripts/... ${GOTEST_ARGS}
3737

3838
test:

0 commit comments

Comments
 (0)