From 134c1627a437dba9d27a54cd87e9921ce2af5154 Mon Sep 17 00:00:00 2001 From: Hayden Hargreaves Date: Thu, 9 Apr 2026 12:19:01 -0700 Subject: [PATCH] cicd: implemented tests in the pipeline --- .github/workflows/deploy.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 19e2c8b..d58931e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,6 +12,11 @@ jobs: - name: Checkout Code uses: actions/checkout@v4 + - name: Run Backend Tests + env: + RUN_LIVE_OPENAI_TESTS: "0" + run: go test ./... + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3