feat(usage): add PingCheckCtx for cancellable ping loops #23
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: | |
| pull_request: | |
| branches: | |
| # on pull requests to develop and release branches | |
| - 'develop' | |
| - 'v*' | |
| paths-ignore: | |
| - '**.md' | |
| - 'changelogs/**' | |
| - 'docs/**' | |
| - 'design/**' | |
| - 'LICENSE' | |
| - 'MAINTAINERS.md' | |
| jobs: | |
| unit-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Go 1.24.12 | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.24.12 | |
| - name: Run unit tests | |
| run: make test |