Bump github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring from 0.91.0 to 0.92.1 #588
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: Pull Request | |
| on: | |
| pull_request: | |
| types: [synchronize, opened, reopened] | |
| branches: ['main'] | |
| jobs: | |
| PR: | |
| name: Pull Request | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run lint | |
| run: make lint | |
| - uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0 | |
| with: | |
| go-version: '^1.26.1' | |
| cache-dependency-path: go.sum | |
| - name: Run kubeconform | |
| shell: bash | |
| run: | | |
| go install github.com/yannh/kubeconform/cmd/kubeconform@v0.7.0 | |
| helm template charts/qdrant | kubeconform --summary -output pretty -schema-location default -schema-location "https://raw.githubusercontent.com/datreeio/CRDs-catalog/main/{{.Group}}/{{.ResourceKind}}_{{.ResourceAPIVersion}}.json" | |
| - name: Check Go Formatting | |
| run: | | |
| files=$(gofmt -l .) && echo $files && [ -z "$files" ] | |
| - name: Golang CI Lint | |
| uses: golangci/golangci-lint-action@ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a # v9.3.0 | |
| with: | |
| working-directory: test | |
| version: v2.11.4 # Specify the golangci-lint version, so we are stable | |
| args: --timeout 10m # Increase the timeout to 10 minutes | |
| - name: Run unit tests | |
| run: make test-unit | |
| - name: Setup BATS | |
| uses: mig4/setup-bats@af9a00deb21b5d795cabfeaa8d9060410377686d # v1.2.0 | |
| with: | |
| bats-version: 1.13.0 | |
| - name: Run integration tests | |
| run: make test-integration |