From ab9edb20d60a2c30d0711657d77e2be1ac8340e6 Mon Sep 17 00:00:00 2001 From: MicroOps Date: Tue, 22 Oct 2024 14:01:54 +0800 Subject: [PATCH] optimize: workflow test unit Signed-off-by: MicroOps --- .github/workflows/github-actions-build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-actions-build.yaml b/.github/workflows/github-actions-build.yaml index 73aff9f..10061c7 100644 --- a/.github/workflows/github-actions-build.yaml +++ b/.github/workflows/github-actions-build.yaml @@ -23,7 +23,7 @@ jobs: run: dist/idas --config examples/simple.yaml --config.display - name: Start service run: | # 启动一个监听端口的进程,例如一个简单的 HTTP 服务器 - dist/idas --config examples/simple.yaml + nohup dist/idas --config examples/simple.yaml &> server.log & echo $! > server.pid shell: bash - name: Wait for service to start