From bd328940433da4141b313f2f436f003d0e76cfe9 Mon Sep 17 00:00:00 2001 From: Jeff Ortel Date: Thu, 22 Aug 2024 11:53:01 -0700 Subject: [PATCH] checkpoint Signed-off-by: Jeff Ortel --- .github/workflows/main.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d87106ff..45642a6f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -52,16 +52,20 @@ jobs: - build - test-unit runs-on: ubuntu-latest + env: + DISCONNECTED: 1 + HUB_BASE_URL: http://localhost:8080 + DB_PATH: /tmp/hub.db steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v3 with: go-version: '1.19' - run: | - rm -f /tmp/tackle.db - DISCONNECTED=1 make run & + rm -f $DB_PATH + make run & sleep 15 # probably a dirty solution - HUB_BASE_URL=http://localhost:8080 make test-api + make test-api build-image: needs: