From 73748a9d09ebd80e611be0ecf8f030d4ca197be3 Mon Sep 17 00:00:00 2001 From: db123-test Date: Mon, 4 May 2026 09:57:21 +0330 Subject: [PATCH] chore(ci-cd): remove redundant Go setup step Remove the explicit Go installation step in the CI pipeline since Go is already available in the container. The Go proxy mirror configuration remains in place to maintain dependency resolution behavior. --- .github/workflows/ci-cd.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 208d2ff..99ee388 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -14,9 +14,6 @@ jobs: - name: Checkout repo run: git clone "${{ secrets.G_CLONE_URL }}" . - - name: Setup go - run : echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.bashrc && source ~/.bashrc - - name: Set go proxy mirror run: go env -w GOPROXY=https://go.iranserver.com/repository/go/ && go env -w GOSUMDB=off