From 3d22d80e7204e5d2903406b15b8dd25dc7a60425 Mon Sep 17 00:00:00 2001 From: Bence Csati Date: Fri, 24 May 2024 18:32:17 +0200 Subject: [PATCH] fix: dagger call etoe, update README Signed-off-by: Bence Csati --- Makefile | 2 +- README.md | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) 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 ```