From 2afa3cdef3c94990783ec80339e6a921162324b3 Mon Sep 17 00:00:00 2001 From: Sotirios Mantziaris Date: Sun, 17 Mar 2024 13:42:47 +0200 Subject: [PATCH] Fix tests --- .github/workflows/ci.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b3640745..e21ceca81 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,16 +55,12 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} path-to-lcov: ./coverage.lcov - - name: e2e - Starting service + - name: e2e run: | - go build . + go build -o ./service . nohup ./service & - working-directory: ./examples/service - - - name: Starting client - run: | - go run main.go - working-directory: ./examples/client + go run client/main.go + working-directory: ./examples - name: Stop dependencies run: make deps-stop