We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1028409 commit 62e6d92Copy full SHA for 62e6d92
1 file changed
.github/workflows/ci.yml
@@ -13,6 +13,10 @@ jobs:
13
test:
14
name: Test & Build
15
runs-on: ubuntu-latest
16
+ env:
17
+ GONOSUMCHECK: github.com/orchestra-mcp/*
18
+ GONOSUMDB: github.com/orchestra-mcp/*
19
+ GOFLAGS: -mod=mod
20
steps:
21
- uses: actions/checkout@v4
22
@@ -21,7 +25,12 @@ jobs:
25
go-version: "1.23"
26
23
27
- name: Download dependencies
24
- run: go mod download
28
+ run: |
29
+ for i in 1 2 3; do
30
+ go mod download && break
31
+ echo "Retry $i: waiting for Go proxy to index..."
32
+ sleep 15
33
+ done
34
35
- name: Vet
36
run: go vet ./...
0 commit comments