chore(deps): bump github.com/pilot-protocol/pilotprotocol from 1.13.4 to 1.13.9 #97
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout this repo | |
| uses: actions/checkout@v7 | |
| with: | |
| path: runtime | |
| - name: Checkout web4 | |
| uses: actions/checkout@v7 | |
| with: | |
| repository: pilot-protocol/pilotprotocol | |
| path: web4 | |
| - name: Checkout common | |
| uses: actions/checkout@v7 | |
| with: | |
| repository: pilot-protocol/common | |
| path: common | |
| - name: Checkout trustedagents | |
| uses: actions/checkout@v7 | |
| with: | |
| repository: pilot-protocol/trustedagents | |
| path: trustedagents | |
| - name: Checkout handshake | |
| uses: actions/checkout@v7 | |
| with: | |
| repository: pilot-protocol/handshake | |
| path: handshake | |
| - name: Checkout policy | |
| uses: actions/checkout@v7 | |
| with: | |
| repository: pilot-protocol/policy | |
| path: policy | |
| - name: Checkout skillinject | |
| uses: actions/checkout@v7 | |
| with: | |
| repository: pilot-protocol/skillinject | |
| path: skillinject | |
| - name: Checkout webhook | |
| uses: actions/checkout@v7 | |
| with: | |
| repository: pilot-protocol/webhook | |
| path: webhook | |
| - name: Checkout eventstream | |
| uses: actions/checkout@v7 | |
| with: | |
| repository: pilot-protocol/eventstream | |
| path: eventstream | |
| - name: Checkout dataexchange | |
| uses: actions/checkout@v7 | |
| with: | |
| repository: pilot-protocol/dataexchange | |
| path: dataexchange | |
| - name: Checkout updater | |
| uses: actions/checkout@v7 | |
| with: | |
| repository: pilot-protocol/updater | |
| path: updater | |
| - name: Checkout gateway | |
| uses: actions/checkout@v7 | |
| with: | |
| repository: pilot-protocol/gateway | |
| path: gateway | |
| - name: Checkout nameserver | |
| uses: actions/checkout@v7 | |
| with: | |
| repository: pilot-protocol/nameserver | |
| path: nameserver | |
| - name: Checkout rendezvous | |
| uses: actions/checkout@v7 | |
| with: | |
| repository: pilot-protocol/rendezvous | |
| path: rendezvous | |
| - name: Checkout beacon | |
| uses: actions/checkout@v7 | |
| with: | |
| repository: pilot-protocol/beacon | |
| path: beacon | |
| - name: Checkout app-store | |
| uses: actions/checkout@v7 | |
| with: | |
| repository: pilot-protocol/app-store | |
| path: app-store | |
| - name: Checkout libpilot | |
| uses: actions/checkout@v7 | |
| with: | |
| repository: pilot-protocol/libpilot | |
| path: libpilot | |
| - uses: actions/setup-go@v7 | |
| with: | |
| go-version-file: runtime/go.mod | |
| 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 ./... | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v7 | |
| with: | |
| files: ./runtime/coverage.out | |
| flags: unittests | |
| name: runtime | |
| fail_ci_if_error: false | |
| - name: Coverage summary | |
| working-directory: runtime | |
| run: go tool cover -func=coverage.out | tail -20 | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| name: coverage-runtime | |
| path: runtime/coverage.out | |
| retention-days: 30 |