From 7b5239eefaa9416cf8505596037eb0ec7642a018 Mon Sep 17 00:00:00 2001 From: Cody Oss <6331106+codyoss@users.noreply.github.com> Date: Tue, 3 Dec 2024 16:02:40 -0600 Subject: [PATCH] chore(ci): run go build (#1555) --- .github/workflows/ci.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d586af1e..1bb0eb4f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -101,6 +101,8 @@ jobs: rm regen.tgz - name: Run mod tidy run: go mod tidy + - name: Build the code + run: go build ./... - name: Run unit tests run: go test ./... - name: Run server coverage