Skip to content

Bump k8s.io/client-go from 0.31.1 to 0.32.0 #109

Bump k8s.io/client-go from 0.31.1 to 0.32.0

Bump k8s.io/client-go from 0.31.1 to 0.32.0 #109

Workflow file for this run

name: PR Workflow
on:
pull_request:
types: [ synchronize, opened, reopened]
branches: [ 'main' ]
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@v4
- uses: actions/setup-go@v5
with:
go-version: '^1.23'
cache: false
- name: Helm lint (CRDs)
run: |
helm lint charts/qdrant-kubernetes-api
- name: Check Go Formatting
run: |
files=$(gofmt -l .) && echo $files && [ -z "$files" ]
- name: Golang CI Lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.61.0 # Specify the golangci-lint version, so we are stable
args: --timeout 10m # Increase the timeout to 10 minutes
- name: Run make gen
run: |
make gen
- name: Ensure that make gen did not result in changes
uses: CatChen/check-git-status-action@v1
with:
fail-if-not-clean: true
- name: Tests
run: |
make test