chore(deps): bump github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring from 0.78.2 to 0.79.0 #1900
Workflow file for this run
This file contains 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: Tests and build | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
defaults: | |
run: | |
shell: bash | |
env: | |
GOLANG_CI_VERSION: v1.61.0 | |
jobs: | |
license: | |
name: Check license on files | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: check | |
run: make check-license | |
lint: | |
name: Lint files | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
cache: false | |
- name: lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: ${{ env.GOLANG_CI_VERSION }} | |
build: | |
name: Build operator | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
check-latest: true | |
- name: build | |
run: make build | |
test: | |
name: Test operator | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
check-latest: true | |
- name: test | |
run: make test |