feat(libp2p): add local_peer_id to join/leave additional data #2504
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: Go Test | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.go' | |
| - 'go.mod' | |
| - 'go.sum' | |
| - '.github/workflows/test.yaml' | |
| workflow_dispatch: | |
| branches: [ '**' ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Set up Go | |
| uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 | |
| with: | |
| go-version: '1.25.x' | |
| - name: Check go mod tidy | |
| run: | | |
| go mod tidy | |
| go mod verify | |
| git diff --exit-code go.mod go.sum | |
| - name: Run tests with race detector | |
| env: | |
| CGO_ENABLED: "1" | |
| run: go test -race -json -timeout 10m ./... | tee test.json | |
| - name: Annotate tests | |
| if: always() | |
| uses: guyarb/golang-test-annotations@2941118d7ef622b1b3771d1ff6eae9e90659eb26 # v0.8.0 | |
| with: | |
| test-results: test.json |