chore(pubsub): Remove TODO that is 7 years old and on which no action has been taken #10787
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
--- | |
name: vet | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
vet: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20.x' | |
- name: Install tools | |
run: | | |
go install golang.org/x/lint/golint@latest && \ | |
go install golang.org/x/tools/cmd/goimports@latest && \ | |
go install honnef.co/go/tools/cmd/staticcheck@latest | |
- name: Execute vet.sh | |
run: ./.github/workflows/vet.sh |