diff --git a/Makefile b/Makefile index 2962fc43c..aa9613014 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ test: ## Run tests .PHONY: test-e2e test-e2e: ## Run end-to-end tests $(call print-target) - $(DAGGER_BIN) call --source .:default test etoe + $(DAGGER_BIN) call --source .:default etoe .PHONY: lint lint: ## Run linters diff --git a/README.md b/README.md index b358210c7..4a1ef7702 100644 --- a/README.md +++ b/README.md @@ -114,6 +114,7 @@ make up ``` Run project components: + ```sh make sink-worker make server @@ -130,6 +131,7 @@ Run tests: ```sh make test +make test-e2e ``` Run linters: @@ -143,7 +145,9 @@ Some linter violations can automatically be fixed: ```shell make fmt ``` + Generate go code: + ```shell make generate ```