Implement GetX in client and --history
in CLI for logs, events, and metrics
#7
Workflow file for this run
This file contains 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
# .github/workflows/test.yml | |
name: Test | |
on: | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
packages: none | |
env: | |
GOPRIVATE: github.com/synadia-io | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23.2' | |
cache: true | |
cache-dependency-path: 'go.sum' | |
- name: Download dependencies | |
run: go mod download | |
- name: Run tests | |
run: go run github.com/onsi/ginkgo/v2/ginkgo -r --skip-package=/test -timeout=10m --vv --show-node-events --poll-progress-after=5s --poll-progress-interval=1s |