diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 20cc1c62..6595cc8d 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -65,7 +65,7 @@ jobs: - name: run fs working-directory: . run: | - cargo run & + make e2e-server & env: PORT: 9000 diff --git a/Makefile b/Makefile index 6f05e92b..5c69f4a6 100644 --- a/Makefile +++ b/Makefile @@ -21,3 +21,7 @@ start: .PHONY: stop stop: $(DOCKER_CLI) stop $(CONTAINER_NAME) + +.PHONY: e2e +e2e-server: + sh $(shell pwd)/scripts/run.sh