Skip to content

Sync from monorepo (2026-03-20 22:19:40 UTC) #15

Sync from monorepo (2026-03-20 22:19:40 UTC)

Sync from monorepo (2026-03-20 22:19:40 UTC) #15

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
jobs:
test:
name: Test & Build
runs-on: ubuntu-latest
env:
GONOSUMCHECK: github.com/orchestra-mcp/*
GONOSUMDB: github.com/orchestra-mcp/*
GOFLAGS: -mod=mod
GOPROXY: "https://proxy.golang.org,direct"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.24"
- name: Download dependencies
run: |
for i in 1 2 3 4 5; do
go mod download && break
echo "Attempt $i failed, retrying with GOPROXY=direct..."
GOPROXY=direct go mod download && break
sleep 15
done
- name: Vet
run: go vet ./...
- name: Test
run: go test ./...
- name: Build
run: go build -o devtools-debugger ./cmd/