From 50b55eed24af541532689cb4335b399dfbdbe5fc Mon Sep 17 00:00:00 2001 From: Chandra Sekar Date: Tue, 20 Aug 2024 22:32:00 +0100 Subject: [PATCH] fix dir for CI workflow --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b89c2f6..4e00f29 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,8 +21,12 @@ jobs: with: go-version: 1.22 + - name: Set working directory + run: cd ./hello-world/ + - name: Install dependencies run: go mod tidy + working-directory: ./hello-world/ - name: Build the application run: go build -v ./...