diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a62a907..fc9a176 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,12 +24,22 @@ jobs: repository: TeoSlayer/pilotprotocol path: web4 + - name: Checkout common + uses: actions/checkout@v4 + with: + repository: pilot-protocol/common + path: common + - uses: actions/setup-go@v5 with: go-version: '1.25' cache: true cache-dependency-path: webhook/go.sum + - name: Tidy (webhook) go.mod (absorb sibling drift) + working-directory: webhook + run: go mod tidy + - name: Run tests with coverage working-directory: webhook run: go test -race -coverprofile=coverage.out -covermode=atomic ./...