Update get namespace capacity info, protos #1075
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: Pull Request Pipeline | |
| on: [pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| name: sanity checks - pull request | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '^1.23' | |
| - name: Show Go version | |
| run: go version | |
| - name: Remove all Go caches | |
| run: | | |
| rm -rf $GOPATH/pkg/mod | |
| rm -rf ~/.cache/go-build | |
| go clean -cache -modcache -testcache -x | |
| - name: run tests and build | |
| run: make clean test bins | |
| - name: lint | |
| run: make tools lint |