Skip to content

build(deps): bump github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring from 0.57.0 to 0.76.0 #120

build(deps): bump github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring from 0.57.0 to 0.76.0

build(deps): bump github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring from 0.57.0 to 0.76.0 #120

Workflow file for this run

name: dev
on: [pull_request]
jobs:
test:
name: Test with Coverage
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.22'
- name: Check out code
uses: actions/checkout@v2
- name: Install dependencies
run: |
go mod download
- name: Run Unit tests
run: |
make test
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: goveralls -coverprofile=coverage.txt -service=github