Add Client SDK Telemetry Tracking #24004
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: golangci-lint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - '**' | |
| pull_request: | |
| jobs: | |
| golangci: | |
| name: golangci | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.25' | |
| - uses: actions/checkout@v6 | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v9 | |
| protolint: | |
| name: protolint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: yoheimuta/action-protolint@v1 | |
| python: | |
| name: python checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: psf/black@stable | |
| with: | |
| version: "24.2.0" | |
| custom: | |
| name: custom checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Error groups checks | |
| run: ./tools/linter_error_groups.sh | |
| - name: goroutine checks | |
| run: ./tools/linter_go_routines.sh | |
| - name: waitgroups checks | |
| run: ./tools/linter_waitgroups_done.sh |