From 2e0b2490333a8e648c0c078511fecd78d0f326ad Mon Sep 17 00:00:00 2001 From: Sam Sherar Date: Mon, 8 Sep 2025 12:56:45 +0100 Subject: [PATCH] fix: rename setup to include build --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 82bb2d6..ab59bc9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ on: pull_request: {} jobs: - setup-go: + setup-go-and-build: runs-on: ubuntu-latest steps: - name: Checkout code @@ -26,7 +26,7 @@ jobs: run: go build ./... unit-test: - needs: setup-go + needs: setup-go-and-build runs-on: ubuntu-latest steps: - name: Checkout code @@ -41,7 +41,7 @@ jobs: run: make test go-fmt-check: - needs: setup-go + needs: setup-go-and-build runs-on: ubuntu-latest steps: - name: Checkout code