From 63dba60c446875617bf9e66c02cf9afa158b987a Mon Sep 17 00:00:00 2001 From: db123-test Date: Thu, 7 May 2026 17:50:05 +0330 Subject: [PATCH] fix: add SQLite Go driver download step in CI pipeline Add explicit go get for the auth-proxy/src package to ensure the SQLite driver is available before running go mod download, fixing dependency resolution during CI builds. --- .github/workflows/ci-cd.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 4c26f46..75ada30 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -19,6 +19,9 @@ jobs: - name: Set go proxy mirror run: /usr/local/go/bin/go env -w GOPROXY=https://go.iranserver.com/repository/go/ && /usr/local/go/bin/go env -w GOSUMDB=off + - name: Download sqlite go driver + run: /usr/local/go/bin/go get auth-proxy/src + - name: Download dependencies run: /usr/local/go/bin/go mod download