From 9e73ba77da13f24a17980d6b1965dbd690c1acd5 Mon Sep 17 00:00:00 2001 From: Vinayak Goyal <73058928+ivinayakg@users.noreply.github.com> Date: Sun, 4 Feb 2024 14:39:14 +0530 Subject: [PATCH] fixed workflow --- .github/workflows/go-test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 4dbb2d6..8d80c8f 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -25,13 +25,13 @@ jobs: - name: Checkout code uses: actions/checkout@v2 + - name: Change to the API directory + run: cd api + - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.x # Specify the Go version you want to use - - - name: Change to the API directory - run: cd api + go-version: 1.20 # Specify the Go version you want to use - name: Install dependencies run: go mod download