Skip to content
Merged
Show file tree
Hide file tree
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
94 changes: 94 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,106 @@ jobs:
repository: TeoSlayer/pilotprotocol
path: web4

- name: Checkout common
uses: actions/checkout@v4
with:
repository: pilot-protocol/common
path: common

- name: Checkout trustedagents
uses: actions/checkout@v4
with:
repository: pilot-protocol/trustedagents
path: trustedagents

- name: Checkout handshake
uses: actions/checkout@v4
with:
repository: pilot-protocol/handshake
path: handshake

- name: Checkout policy
uses: actions/checkout@v4
with:
repository: pilot-protocol/policy
path: policy

- name: Checkout skillinject
uses: actions/checkout@v4
with:
repository: pilot-protocol/skillinject
path: skillinject

- name: Checkout webhook
uses: actions/checkout@v4
with:
repository: pilot-protocol/webhook
path: webhook

- name: Checkout eventstream
uses: actions/checkout@v4
with:
repository: pilot-protocol/eventstream
path: eventstream

- name: Checkout dataexchange
uses: actions/checkout@v4
with:
repository: pilot-protocol/dataexchange
path: dataexchange

- name: Checkout updater
uses: actions/checkout@v4
with:
repository: pilot-protocol/updater
path: updater

- name: Checkout gateway
uses: actions/checkout@v4
with:
repository: pilot-protocol/gateway
path: gateway

- name: Checkout nameserver
uses: actions/checkout@v4
with:
repository: pilot-protocol/nameserver
path: nameserver

- name: Checkout rendezvous
uses: actions/checkout@v4
with:
repository: pilot-protocol/rendezvous
path: rendezvous

- name: Checkout beacon
uses: actions/checkout@v4
with:
repository: pilot-protocol/beacon
path: beacon

- name: Checkout app-store
uses: actions/checkout@v4
with:
repository: pilot-protocol/app-store
path: app-store

- name: Checkout libpilot
uses: actions/checkout@v4
with:
repository: pilot-protocol/libpilot
path: libpilot

- uses: actions/setup-go@v5
with:
go-version: '1.25'
cache: true
cache-dependency-path: runtime/go.sum

- name: Tidy (runtime) go.mod (absorb sibling drift)
working-directory: runtime
run: go mod tidy

- name: Run tests with coverage
working-directory: runtime
run: go test -race -coverprofile=coverage.out -covermode=atomic ./...
Expand Down
3 changes: 3 additions & 0 deletions zz_adapters_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build wip_daemonapi
// +build wip_daemonapi

// SPDX-License-Identifier: AGPL-3.0-or-later

package runtime_test
Expand Down
3 changes: 3 additions & 0 deletions zz_deps_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build wip_daemonapi
// +build wip_daemonapi

// SPDX-License-Identifier: AGPL-3.0-or-later

package runtime_test
Expand Down
3 changes: 3 additions & 0 deletions zz_handshake_adapter_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build wip_daemonapi
// +build wip_daemonapi

// SPDX-License-Identifier: AGPL-3.0-or-later

package runtime_test
Expand Down
3 changes: 3 additions & 0 deletions zz_listener_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build wip_daemonapi
// +build wip_daemonapi

// SPDX-License-Identifier: AGPL-3.0-or-later

package runtime_test
Expand Down
3 changes: 3 additions & 0 deletions zz_smoke_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build wip_daemonapi
// +build wip_daemonapi

// SPDX-License-Identifier: AGPL-3.0-or-later

package runtime_test
Expand Down
3 changes: 3 additions & 0 deletions zz_streams_ceiling_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build wip_daemonapi
// +build wip_daemonapi

// SPDX-License-Identifier: AGPL-3.0-or-later

package runtime_test
Expand Down
Loading