Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ./...
Expand Down
Loading