chore(deps): Bump github.com/prometheus-operator/prometheus-operator/pkg/client from 0.92.1 to 0.93.0 #375
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: checks | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - "main" | |
| jobs: | |
| check-golang: | |
| runs-on: ubuntu-latest | |
| name: Golang linter | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Import environment variables from file | |
| run: cat ".github/env" >> $GITHUB_ENV | |
| - uses: actions/setup-go@v7 | |
| with: | |
| go-version: "${{ env.golang-version }}" | |
| check-latest: true | |
| - name: go.mod | |
| run: make tidy && git diff --exit-code | |
| - name: Run GolangCI Lint | |
| uses: golangci/golangci-lint-action@v9.3.0 | |
| with: | |
| version: v2.12.2 | |
| args: --timeout 10m0s | |
| format: | |
| runs-on: ubuntu-latest | |
| name: Check Documentation formatting and links | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Import environment variables from file | |
| run: cat ".github/env" >> $GITHUB_ENV | |
| - name: go.mod | |
| run: make tidy | |
| - uses: actions/setup-go@v7 | |
| with: | |
| go-version: "${{ env.golang-version }}" | |
| check-latest: true | |
| - run: make check-docs check-license | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: | |
| - macos-latest | |
| - ubuntu-latest | |
| name: Build operator binary | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Import environment variables from file | |
| run: cat ".github/env" >> $GITHUB_ENV | |
| - uses: actions/setup-go@v7 | |
| with: | |
| go-version: "${{ env.golang-version }}" | |
| check-latest: true | |
| - run: make poctl |