Bump google.golang.org/protobuf from 1.36.9 to 1.36.10 #52
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: PR Workflow | |
| on: | |
| pull_request: | |
| types: [synchronize, opened, reopened] | |
| branches: ["main"] | |
| env: | |
| GOPRIVATE: github.com/qdrant/qdrant-cloud-public-api | |
| permissions: | |
| contents: read | |
| jobs: | |
| linter: | |
| name: Linter | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 # Sets a timeout of 10 minutes for this job (default is 1 minute) | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| - name: Setup access for private go modules | |
| run: | | |
| git config --global url.'https://${{ secrets.GH_REPO_READ_TOKEN }}@github.com'.insteadOf 'https://github.com' | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: "^1.24" | |
| cache: false | |
| - name: Check Go Formatting | |
| run: | | |
| files=$(gofmt -l .) && echo $files && [ -z "$files" ] | |
| - name: Golang CI Lint | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| version: v2.3.1 | |
| args: --timeout 10m | |
| unit-tests: | |
| name: Unit Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| - name: Setup access for private go modules | |
| run: | | |
| git config --global url.'https://${{ secrets.GH_REPO_READ_TOKEN }}@github.com'.insteadOf 'https://github.com' | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: "^1.24" | |
| - name: Unit tests | |
| run: | | |
| make test_unit |