From 76b2118638265b1b5fb1352d260f2ea484765155 Mon Sep 17 00:00:00 2001 From: Nathan <148575555+nathan-artie@users.noreply.github.com> Date: Thu, 3 Oct 2024 15:12:14 -0700 Subject: [PATCH] github: add step to install Go dependencies --- .github/workflows/gha-go-test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gha-go-test.yml b/.github/workflows/gha-go-test.yml index 1ff85f2c6..161c47042 100644 --- a/.github/workflows/gha-go-test.yml +++ b/.github/workflows/gha-go-test.yml @@ -1,6 +1,7 @@ name: Go tests -run-name: Running tests + on: [push] + jobs: test: runs-on: ubuntu-latest @@ -10,6 +11,8 @@ jobs: uses: actions/setup-go@v5 with: go-version: 1.23 + - name: Install dependencies + run: go mod download - name: Run staticcheck env: SC_VERSION: "2024.1.1"